base.html 664 B

123456789101112131415161718192021
  1. <!DOCTYPE html>
  2. {% load staticfiles %}
  3. {# TODO: change lang? #}
  4. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
  5. <head>
  6. <meta http-equiv="Content-type" content="text/html; charset=UTF-8"/>
  7. <title>{% block title %}{% endblock title %}</title>
  8. <link type="image/x-icon" rel="shortcut icon" href="{% static "panorama/img/tsf.png" %}"/>
  9. <link rel="stylesheet" media="screen" href="{% static "panorama/css/base.css" %}" />
  10. {% block css %}{% endblock css %}
  11. </head>
  12. <body>
  13. {# Add base structure here, menu, etc... #}
  14. {% block content %}{% endblock content %}
  15. {% block js %}{% endblock js %}
  16. </body>
  17. </html>