123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190 |
- <!doctype html>
- <html lang="{{ LANGUAGE_CODE }}"{% if LANGUAGE_BIDI %} dir="rtl"{% endif %}>
- {% load pages_tags mezzanine_tags i18n staticfiles %}
- {# filtro personalizado para encuestas #}
- {% load encuesta_extras %}
- {# --- #}
-
- <head>
- <meta http-equiv="Content-type" content="text/html; charset=utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta name="keywords" content="{% block meta_keywords %}{% endblock %}">
- <meta name="description" content="{% block meta_description %}{% endblock %}">
- <title>{% block meta_title %}{% endblock %}{% if settings.SITE_TITLE %} | {{ settings.SITE_TITLE }}{% endif %}</title>
- <link rel="shortcut icon" href="{% static "img/favicon.png" %}">
- {% ifinstalled mezzanine.blog %}
- <link rel="alternate" type="application/rss+xml" title="RSS" href="{% url "blog_post_feed" "rss" %}">
- <link rel="alternate" type="application/atom+xml" title="Atom" href="{% url "blog_post_feed" "atom" %}">
- {% endifinstalled %}
- {% compress css %}
- <link rel="stylesheet" href="{% static "css/bootstrap.css" %}">
- <link rel="stylesheet" href="{% static "css/mezzanine.css" %}">
- <link rel="stylesheet" href="{% static "css/bootstrap-theme.css" %}">
- {% if LANGUAGE_BIDI %}
- <link rel="stylesheet" href="{% static "css/bootstrap-rtl.css" %}">
- {% endif %}
- {% ifinstalled cartridge.shop %}
- <link rel="stylesheet" href="{% static "css/cartridge.css" %}">
- {% if LANGUAGE_BIDI %}
- <link rel="stylesheet" href="{% static "css/cartridge.rtl.css" %}">
- {% endif %}
- {% endifinstalled %}
- {% block extra_css %}{% endblock %}
- {% endcompress %}
- {% compress js %}
- <script src="{% static "mezzanine/js/"|add:settings.JQUERY_FILENAME %}"></script>
- <script src="{% static "js/bootstrap.js" %}"></script>
- <script src="{% static "js/bootstrap-extras.js" %}"></script>
- {% block extra_js %}{% endblock %}
- {% endcompress %}
- <!--[if lt IE 9]>
- <script src="{% static "js/html5shiv.js" %}"></script>
- <script src="{% static "js/respond.min.js" %}"></script>
- <![endif]-->
- {% block extra_head %}{% endblock %}
- </head>
- <body id="{% block body_id %}body{% endblock %}">
- <div class="navbar navbar-default navbar-fixed-top" role="navigation">
- <div class="container">
- <div class="navbar-header">
- <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
- <span class="sr-only">{% trans "Toggle Navigation" %}</span>
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- </button>
- {% block navbar_title %}
- {% if settings.SITE_TITLE %}<a class="navbar-brand" href="/">{#{{ settings.SITE_TITLE }}#}</a>{% endif %}
- {% if settings.SITE_TAGLINE %}<p class="navbar-text visible-lg">{{ settings.SITE_TAGLINE }}</p>{% endif %}
- {% endblock%}
- </div>
- <div class="navbar-collapse collapse">
- {# {% block navbar_search_form %}{% search_form "all" %}{% endblock %} #}
- {% block navbar_dropdown_menu %}{% page_menu "pages/menus/dropdown.html" %}{% endblock%}
- </div>
- </div>
- </div>
- <div class="container">
- {% block navbar_search_form %}{% search_form "all" %}{% endblock %}
-
- {% nevercache %}
- {% if messages %}
- <div class="messages">
- {% for message in messages %}
- <div class="alert alert-dismissable alert-{{ message.tags }}" data-alert="alert">
- <button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
- {{ message }}
- </div>
- {% endfor %}
- </div>
- {% endif %}
- {% endnevercache %}
- <h1>{% block title %}{% endblock %}</h1>
- <ul class="breadcrumb">
- {% spaceless %}
- {% block breadcrumb_menu %}{% page_menu "pages/menus/breadcrumb.html" %}{% endblock %}
- {% endspaceless %}
- </ul>
- </div>
- <div class="container">
- <div class="row">
- <div class="col-md-2 left" style="">
- {% block left_panel %}
- <div class="panel panel-default tree">{% page_menu "pages/menus/tree.html" %}</div>
- {% endblock %}
- </div>
- <div class="col-md-10 middle"
- {# editando estilos para agregar fondo por tipo de categoria #}
- {% with padre=page.html_id|csplit_first_unicode:"-" %}
- {% if padre == 'documentación' or page.title == "Documentación" %}
- style="background-image: url('/static/img/fondo-pag-documentacion.png'); background-repeat: repeat-y; background-position: center; background-attachment: fixed;"
-
- {% elif padre == "académico" or page.title == "Académico" %}
- style="background-image: url('/static/img/fondo-pag-academico.png'); background-repeat: repeat-y; background-position: center; background-attachment: fixed;"
- {% elif padre == "infraestructura" or page.title == "Infraestructura" %}
- style="background-image: url('/static/img/fondo-pag-infraestructura.png'); background-repeat: repeat-y; background-position: center; background-attachment: fixed;"
- {% elif padre == "financiera" or page.title == "Financiera" %}
- style="background-image: url('/static/img/fondo-pag-financiera.png'); background-repeat: repeat-y; background-position: center; background-attachment: fixed;"
- {% endif %}
- {% endwith %}
- >
-
- {# -------------- #}
- {% block main %}{% endblock %}
- </div>
- <!-- <div class="col-md-3 right">
- {% nevercache %}
- {% include "includes/language_selector.html" %}
- {% include "includes/user_panel.html" %}
- {% endnevercache %}
- <div class="panel panel-default">
- <div class="panel-body">
- {% block right_panel %}
- {% ifinstalled mezzanine.twitter %}
- {% include "twitter/tweets.html" %}
- {% endifinstalled %}
- {% endblock %}
- </div>
- </div>
- </div>
- -->
- </div>
- </div>
- <footer>
- <div class="container">
- {% page_menu "pages/menus/footer.html" %}
- <div class="row">
- <p class="site-info text-center">
- <br>
- <a href="/equipo"><span class="glyphicon glyphicon-ok" style="font-size: 1.3em; color: #1F7CA6;"> </span> EQUIPO DE TRABAJO</a>
- <br>
- <hr>
- {% trans "Powered by" %}
- <a href="http://mezzanine.jupo.org">Mezzanine</a>{% ifinstalled cartridge.shop %},
- <a href="http://cartridge.jupo.org">Cartridge</a>{% endifinstalled %}
- {% trans "and" %}
- <a href="http://www.djangoproject.com">Django</a>
- <span class="separator">|</span>
- {% trans "Theme by" %} <a target="_blank" href="http://getbootstrap.com">Bootstrap</a>
- {% ifinstalled mezzanine.mobile %}
- <span class="separator">|</span>
- <a href="{% url "set_device" "mobile" %}?next={{ request.path }}">{% trans "View Mobile Site" %}</a>
- {% endifinstalled %}
- </p>
- </div>
- </div>
- </footer>
- {% block footer_js %}
- {% include "includes/footer_scripts.html" %}
- {% endblock %}
- </body>
- </html>
|