source: modelado_topicos/templates/base.html @ 485135c

preprocesamientov1.0
Last change on this file since 485135c was a1c3fea, checked in by rboet <rboet@…>, 9 años ago

se agregó texto original sin acentos y función mejorada para ver los topicos

  • Propiedad mode establecida a 100755
File size: 677 octetos
Línea 
1{% load staticfiles %}
2<!DOCTYPE html>
3<html>
4    <head>
5        <meta charset='UTF-8'>
6        <title>{% block title %}{% endblock %}</title>
7        <script src="{% static "topic_explorer/js/lib/jquery-1.11.0.min.js" %}"></script>
8        <script src="{% static "topic_explorer/bootstrap-2.3.2/js/bootstrap.min.js" %}"></script>
9        <script src="{% static "topic_explorer/js/lib/d3.v3.min.js" %}"></script>
10        <link rel="stylesheet" type="text/css" href="{% static "topic_explorer/bootstrap-2.3.2/css/bootstrap.min.css" %}"/>
11
12        {% block headScriptCss %}
13        {% endblock %}
14    </head>
15    <body>
16    {% block body %}
17    {% endblock %}
18    </body>
19</html>
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.