website/templates/base.html

36 lines
1.2 KiB
HTML
Raw Normal View History

2022-06-09 08:36:29 +01:00
{% load static wagtailcore_tags wagtailuserbar %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>
2022-06-10 15:54:31 +01:00
{% block title %}{% endblock %}
2022-06-09 08:36:29 +01:00
{% block title_suffix %}
{% wagtail_site as current_site %}
2022-06-10 15:44:43 +01:00
{% if current_site and current_site.site_name %}:: {{ current_site.site_name }}{% endif %}
2022-06-09 08:36:29 +01:00
{% endblock %}
</title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
2022-06-12 17:21:46 +01:00
<link rel="stylesheet" type="text/css" href="{% static 'css/base.css' %}">
<link rel="stylesheet" type="text/css" href="{% static 'contrib/fontawesome/css/all.min.css' %}">
2022-06-09 08:36:29 +01:00
2022-06-10 15:44:43 +01:00
{% block extra_css %}{% endblock %}
2022-06-09 08:36:29 +01:00
</head>
<body class="{% block body_class %}{% endblock %}">
{% wagtailuserbar %}
2022-06-12 17:21:46 +01:00
{% include "navbar.html" %}
2022-06-09 08:36:29 +01:00
{% block content %}{% endblock %}
<script async defer type="text/javascript" src="{% static 'js/base.js' %}"></script>
<script async defer type="text/javascript" src="{% static 'js/darkmode.js' %}"></script>
2022-06-09 08:36:29 +01:00
2022-06-10 15:44:43 +01:00
{% block extra_js %}{% endblock %}
2022-06-09 08:36:29 +01:00
</body>
</html>