1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
wagtail-website-2018-spike/templates/base.html

31 lines
975 B
HTML

{% load static wagtailuserbar wagtailmetadata_tags %}
<!DOCTYPE HTML>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8" />
<meta http-equiv="Content-Language" content="en" />
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width" />
<meta name="superfish" content="nofish" />
<meta name="application-name" content="{{ settings.WAGTAIL_SITE_NAME }}" />
<link rel="icon" type="image/png" href='{% static "img/logo-transparent.png" %}'/>
<link rel="stylesheet" href='{% static "css/style.css" %}' />
{% meta_tags %}
<title>{{ page.get_page_title }}</title>
</head>
<body>
{% wagtailuserbar %}
{% include 'common/navbar.html' with page=self %}
{% block content %}{% endblock %}
{% include 'common/footer.html' with page=self %}
<script src='{% static "js/mermaid.min.js" %}'></script>
<script src='{% static "js/app.js" %}'></script>
</body>
</html>