base.html 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. {% load compressed %}
  2. {% load staticfiles %}
  3. <!DOCTYPE html>
  4. <html lang="{{ LANGUAGE_CODE }}">
  5. <head>
  6. <meta charset="utf-8">
  7. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  8. <meta name="viewport" content="width=device-width, initial-scale=1">
  9. <title>{% block title %}{% endblock %}</title>
  10. <meta name="description" content="{% block meta_description %}{% endblock %}">
  11. <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
  12. <!--[if lt IE 9]>
  13. <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
  14. <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
  15. <![endif]-->
  16. {% compressed_css '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. {% include "misago/navbar.html" %}
  25. {% include "misago/jumbotron.html" %}
  26. {% block content %}{% endblock %}
  27. {% include "misago/footer.html" %}
  28. {# We include JavaScript at the end of page body so it loads faster #}
  29. {% compressed_js 'misago' %}
  30. {% block extra_scripts %}{% endblock %}
  31. </body>
  32. </html>