source: sicp/templates/base_head.html

Last change on this file was 5bf1c32, checked in by Ing. Roldan D. Vargas G <rvargas@…>, 9 years ago

estilo para el gráfico de la cadena de otras fuentes

  • Property mode set to 100644
File size: 2.3 KB
Line 
1{% load static from staticfiles %}
2{% load i18n %}
3<head>
4        <title>SICP</title>
5        <meta name="robots" content="noindex, nofollow">
6        <meta content="width=device-width, initial-scale=1, maximum-scale=1" name="viewport">
7        <meta content="text/html;charset=utf-8" http-equiv="content-type">
8        <meta content="{% trans 'Simulador Integral de Cadenas Productivas' %}">
9        <link rel="stylesheet" type="text/css" href="{% static 'bootstrap-3.3.4/css/bootstrap.min.css' %}" media="all">
10    <link rel="stylesheet" type="text/css" href="{% static 'bootstrap-3.3.4/plugins/select2-3.5.2/select2.css' %}" media="all">
11    {# <link rel="stylesheet" type="text/css" href="{% static 'bootstrap-3.3.4/plugins/DataTables-1.10.6/media/css/jquery.dataTables.css' %}"> #}
12    <link rel="stylesheet" type="text/css" href="{% static 'bootstrap-3.3.4/plugins/DataTables-1.10.6/extensions/TableTools/css/dataTables.tableTools.css' %}">
13    <link rel="stylesheet" type="text/css" href="{% static 'bootstrap-3.3.4/plugins/DataTables-1.10.6/media/css/dataTables.bootstrap.css' %}">
14    <link rel="stylesheet" type="text/css" href="{% static 'bootstrap-3.3.4/plugins/DataTables-1.10.6/extensions/Responsive/css/dataTables.responsive.css' %}">
15    <link rel="stylesheet" type="text/css" href="{% static 'bootstrap-3.3.4/plugins/bootstrap-treeview/css/bootstrap-treeview.css' %}">
16    {# Extra glyicons #}
17    <link rel="stylesheet" type="text/css" href="{% static 'plugins/font-awesome-4.3.0/css/font-awesome.min.css' %}">
18    {# Estilos propios de la aplicación #}
19        <link rel="stylesheet" type="text/css" href="{% static 'css/styles.css' %}" media="all">
20    {# Inclusión de variables de uso global a implementar en erchivos javascript #}
21    {% include 'variables_javascript.html' %}
22    <style type="text/css">
23        /* Media Query para ocultar el texto de la paginación en SmartPhones */
24        @media (max-width: 440px) {
25            div.dataTables_info { display: none; }
26        }
27        .dialogFixedtop {
28            z-index: 9999 !important;
29        }
30    </style>
31   
32    {# Inclusión de estilo para visulizar la cadena productiva de la Encuesta Industrial en formato svg #}
33         <style type="text/css">
34                 .svgdiv {
35                                border: 1px dashed #3c8243;
36                 }
37         </style>
38       
39               
40    {% block otros_encabezados %}{% endblock otros_encabezados %}
41</head>
Note: See TracBrowser for help on using the repository browser.