public-health-ch/publichealth/templates/base.html

45 lines
1.9 KiB
HTML
Raw Normal View History

2018-06-22 13:06:59 +00:00
{% load compress static wagtailuserbar navigation information %}
{% get_site_root as site_root %}
<!DOCTYPE html>
2017-05-10 21:16:43 +00:00
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
2018-06-22 13:06:59 +00:00
<title>{% block title %}{% if self.seo_title %}{{ self.seo_title }}{% else %}{% if page.trans_title %}{{ page.trans_title }} - {% endif %}{% contact_name site_root=site_root html=False %}{% endif %}{% endblock %}{% block title_suffix %}{% endblock %}</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
2017-01-27 16:06:53 +00:00
<meta name="description" content="{% block description %}{% endblock %}">
{% compress css %}
2017-05-16 10:00:35 +00:00
{% block extra_css %}{% endblock %}
2016-12-12 22:43:20 +00:00
<link rel="stylesheet" type="text/x-scss" href="{% static 'css/main.scss' %}">
{% endcompress %}
2017-05-16 10:03:53 +00:00
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body class="{% block body_class %}{% endblock %}">
{% wagtailuserbar %}
2017-01-27 16:06:53 +00:00
{% include 'header.html' %}
{% block content %}{% endblock %}
2017-01-27 16:06:53 +00:00
{% include 'footer.html' %}
{% block extra_js %}
2017-01-27 16:06:53 +00:00
<script src="{% static 'libs/jquery/dist/jquery.js' %}"></script>
2016-12-19 16:04:34 +00:00
<script src="{% static 'libs/bootstrap-sass/assets/javascripts/bootstrap.min.js' %}"></script>
2017-01-27 16:06:53 +00:00
<script src="{% static 'libs/slick-carousel/slick/slick.min.js' %}"></script>
2017-09-08 14:37:33 +00:00
<script src="{% static 'libs/slick-lightbox/dist/slick-lightbox.js' %}"></script>
2018-05-28 15:46:16 +00:00
<script src="{% static 'libs/cookieconsent/build/cookieconsent.min.js' %}"></script>
{% endblock %}
2017-01-27 16:06:53 +00:00
{% compress js %}
<script type="text/javascript" src="{% static 'js/main.js' %}"></script>
{% endcompress %}
</body>
</html>