12345678910111213141516171819202122232425262728293031323334353637 |
- {% load compressed %}
- {% load 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 %}{% 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]-->
- {% compressed_css '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>
- {% include "misago/navbar.html" %}
- {% include "misago/jumbotron.html" %}
- {% block content %}{% endblock %}
- {% include "misago/footer.html" %}
- {# We include JavaScript at the end of page body so it loads faster #}
- {% compressed_js 'misago' %}
- {% block extra_scripts %}{% endblock %}
- </body>
- </html>
|