30 lines
1 KiB
HTML
30 lines
1 KiB
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>{% include "common/title-item.html" with page=self current=self %}{{ settings.WAGTAIL_SITE_NAME }}</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>
|