2016-12-15 22:00:42 +00:00
|
|
|
{% load static wagtailuserbar wagtailmetadata_tags %}
|
2016-11-22 21:50:21 +00:00
|
|
|
|
|
|
|
<!DOCTYPE html>
|
2016-11-24 22:02:27 +00:00
|
|
|
<html lang="{{ django_settings.LANGUAGE_CODE }}">
|
2016-11-24 16:44:13 +00:00
|
|
|
<head>
|
|
|
|
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
|
|
<title>{% block htmltitle %}{% if self.seo_title %}{{ self.seo_title }}{% else %}{{ self.title }}{% endif %}{% endblock %}</title>
|
|
|
|
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width" />
|
2016-11-24 22:02:27 +00:00
|
|
|
<meta http-equiv="Content-Language" content="{{ django_settings.LANGUAGE_CODE }}" />
|
2016-11-24 16:44:13 +00:00
|
|
|
<meta name="superfish" content="nofish" />
|
2016-11-24 22:02:27 +00:00
|
|
|
<meta name="application-name" content="{{ django_settings.WAGTAIL_SITE_NAME }}" />
|
2016-11-22 21:50:21 +00:00
|
|
|
|
2016-12-15 22:00:42 +00:00
|
|
|
{% meta_tags %}
|
|
|
|
|
2016-11-24 18:03:37 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="{% static 'css/index.css' %}">
|
2016-11-22 21:50:21 +00:00
|
|
|
|
2016-11-24 16:44:13 +00:00
|
|
|
{% block extra_css %}{% endblock %}
|
2016-11-24 18:03:37 +00:00
|
|
|
<script type="text/javascript" src="{% static 'js/jquery.js' %}"></script>
|
2016-11-24 16:44:13 +00:00
|
|
|
</head>
|
|
|
|
<body class="{% block body_class %}{% endblock %}" id="page-top">
|
|
|
|
{% wagtailuserbar %}
|
2016-11-22 21:50:21 +00:00
|
|
|
|
2016-11-24 23:36:52 +00:00
|
|
|
{% include 'common/navbar.html' with page=self %}
|
|
|
|
|
2016-11-24 16:44:13 +00:00
|
|
|
{% block content %}{% endblock %}
|
2016-11-22 21:50:21 +00:00
|
|
|
|
2016-11-24 18:03:37 +00:00
|
|
|
<script type="text/javascript" src="{% static 'js/libs.js' %}"></script>
|
|
|
|
<script type="text/javascript" src="{% static 'js/app.js' %}"></script>
|
2016-11-22 21:50:21 +00:00
|
|
|
|
2016-11-24 16:44:13 +00:00
|
|
|
{% block extra_js %}{% endblock %}
|
|
|
|
</body>
|
2016-11-22 21:50:21 +00:00
|
|
|
</html>
|