123456789101112131415161718192021222324252627282930313233343536373839 |
- {% load pipeline i18n staticfiles %}
- <!DOCTYPE html>
- <html lang="{{ LANGUAGE_CODE }}">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <title>{% block title %}{{ misago_settings.forum_name }}{% endblock %}</title>
- <meta name="description" content="{% block meta-description %}{% endblock %}">
- <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
- <!--[if lt IE 9]>
- <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
- <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
- <![endif]-->
- {% stylesheet 'misago_lib' %}
- {% stylesheet 'misago' %}
- <link rel="apple-touch-icon-precomposed" sizes="144x144" href="{% static 'apple-touch-icon-144-precomposed.png' %}">
- <link rel="apple-touch-icon-precomposed" sizes="114x114" href="{% static 'apple-touch-icon-114-precomposed.png' %}">
- <link rel="apple-touch-icon-precomposed" sizes="72x72" href="{% static 'apple-touch-icon-72-precomposed.png' %}">
- <link rel="apple-touch-icon-precomposed" href="{% static 'apple-touch-icon-57-precomposed.png' %}">
- <link rel="shortcut icon" href="{% static 'favicon.ico' %}">
- </head>
- <body>
- <noscript>
- {% include "misago/navbar.html" %}
- {% block content %}{% endblock content %}
- {% include "misago/footer.html" %}
- </noscript>
- <section id="main"></section>
- {% javascript "misago_lib" %}
- {% javascript "misago" %}
- </body>
- </html>
|