34 lines
1.1 KiB
HTML
34 lines
1.1 KiB
HTML
{% load static wagtailcore_tags wagtailuserbar %}
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>
|
|
{% block title %}{% endblock %}
|
|
{% block title_suffix %}
|
|
{% wagtail_site as current_site %}
|
|
{% if current_site and current_site.site_name %}:: {{ current_site.site_name }}{% endif %}
|
|
{% endblock %}
|
|
</title>
|
|
<meta name="description" content="" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<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' %}">
|
|
|
|
{% block extra_css %}{% endblock %}
|
|
</head>
|
|
|
|
<body class="{% block body_class %}{% endblock %}">
|
|
{% wagtailuserbar %}
|
|
|
|
{% include "navbar.html" %}
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
<script type="text/javascript" src="{% static 'js/base.js' %}"></script>
|
|
|
|
{% block extra_js %}{% endblock %}
|
|
</body>
|
|
</html>
|