base.html 1.7 KB

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