source: consulta_publica/base/templates/base.template.html @ f791bc4

baseconstituyenteestudiantesgeneralplan_patriasala
Last change on this file since f791bc4 was f791bc4, checked in by aosorio <argenisosorio580@…>, 7 años ago

Arreglando conflictos

  • Propiedad mode establecida a 100644
File size: 1.4 KB
Línea 
1{% load staticfiles %}
2<!DOCTYPE html>
3<html>
4    <head>
5        <meta charset='UTF-8'>
6        <title>{% block title %}Consulta Pública{% endblock %}</title>
7        <link rel="stylesheet" type="text/css" href="{% static "bootstrap-3.3.7/css/bootstrap.min.css" %}"/>
8        <link rel="stylesheet" type="text/css" href="{% static "css/style.css" %}"/>
9        <link rel="stylesheet" type="text/css" href="{% static "icheck/skins/line/_all.css" %}"/>
10       
11        <script src="{% static "jquery/jquery-3.1.0.min.js" %}"></script>
12        <script src="{% static "bootstrap-3.3.7/js/bootstrap.min.js" %}"></script>
13        <script src="{% static "js/bootbox.min.js" %}"></script>
14        <script src="{% static "js/funciones.js" %}"></script>
15        <script src="{% static "icheck/icheck.js" %}"></script>
16        <script src="{% static "jtable/js/jquery.dataTables.min.js" %}"></script>
17        <link rel="stylesheet" type="text/css" href="{% static "jtable/css/jquery.dataTables.min.css" %}"/>
18        {% block headScript %}{%endblock%}
19    </head>
20    <body>
21        {% include 'base.nav.bar.html' %}
22        {% block superContent%}
23            <div class="container">
24                {% block content %}{% endblock %}
25            </div>
26        {% endblock %}
27        {% block modals %}{% endblock %}
28        {% include 'base.footer.html' %}
29    </body>
30    {% block extraJs %}{%endblock%}
31    {% include 'base.alert.messages.html' %}
32</html>
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.