base.html 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. {% load pipeline i18n staticfiles %}
  2. <!DOCTYPE html>
  3. <html lang="{{ LANGUAGE_CODE }}">
  4. <head>
  5. <meta charset="utf-8">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7. <meta name="viewport" content="width=device-width, initial-scale=1">
  8. <title>{% block title %}{{ misago_settings.forum_name }}{% endblock %}</title>
  9. <meta name="description" content="{% block meta-description %}{% endblock %}">
  10. <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
  11. <!--[if lt IE 9]>
  12. <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
  13. <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
  14. <![endif]-->
  15. {% stylesheet 'misago_lib' %}
  16. {% stylesheet 'misago' %}
  17. <link rel="apple-touch-icon-precomposed" sizes="144x144" href="{% static 'apple-touch-icon-144-precomposed.png' %}">
  18. <link rel="apple-touch-icon-precomposed" sizes="114x114" href="{% static 'apple-touch-icon-114-precomposed.png' %}">
  19. <link rel="apple-touch-icon-precomposed" sizes="72x72" href="{% static 'apple-touch-icon-72-precomposed.png' %}">
  20. <link rel="apple-touch-icon-precomposed" href="{% static 'apple-touch-icon-57-precomposed.png' %}">
  21. <link rel="shortcut icon" href="{% static 'favicon.ico' %}">
  22. </head>
  23. <body>
  24. <noscript>
  25. {% include "misago/navbar.html" %}
  26. {% block content %}{% endblock content %}
  27. {% include "misago/footer.html" %}
  28. </noscript>
  29. <section id="main"></section>
  30. {% javascript "misago_lib" %}
  31. {% javascript "misago" %}
  32. </body>
  33. </html>