source: firmaeventos/base/templates/base.template.html @ 3996539

Last change on this file since 3996539 was 3996539, checked in by rudmanmrrod <rudman22@…>, 6 years ago

Renombrado utils como base, cambiado el template, quitados modelos no usados, agregado materialize

  • Property mode set to 100644
File size: 1.6 KB
Line 
1{% load staticfiles %}
2<!DOCTYPE html>
3<html>
4    <head>
5        <meta charset='UTF-8'>
6        <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no">
7        <title>{% block title %}Firma de Documentos{% endblock %}</title>
8        <link rel="stylesheet" type="text/css" href="{% static "materialize/css/materialize.min.css" %}"/>
9        <link rel="stylesheet" type="text/css" href="{% static "materialize/material_icon/icon.css" %}"/>
10        <link rel="stylesheet" type="text/css" href="{% static "css/style.css" %}"/>
11       
12        <script src="{% static "jquery/jquery-3.1.0.min.js" %}"></script>
13        <script src="{% static "materialize/js/materialize.min.js" %}"></script>
14        <script src="{% static "plugins/material-dialog/material-dialog.min.js" %}"></script>
15        <script src="{% static "js/funciones.js" %}"></script>
16        {% block headScript %}{%endblock%}
17    </head>
18    <body class="grey lighten-4">
19        {% include 'base.nav.bar.html' %}
20        <main>
21        {% block superContent%}
22            <div class="container">
23                <div class="card-panel">
24                    {% block content %}{% endblock %}
25                </div>
26            </div>
27        {% endblock %}
28        </main>
29        {% block modals %}{% endblock %}
30        {% include 'base.footer.html' %}
31    </body>
32    {% block extraJs %}{%endblock%}
33    <script>
34        $(document).ready(function() {
35            $('select').material_select();
36        });
37    </script>
38    {% include 'base.alert.messages.html' %}
39</html>
Note: See TracBrowser for help on using the repository browser.