29 lines
894 B
HTML
29 lines
894 B
HTML
{% load static wagtailuserbar wagtailmetadata_tags %}
|
|
|
|
<!DOCTYPE HTML>
|
|
<html lang="en" dir="ltr">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<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="{{ self.title }}" />
|
|
<link rel="icon" type="image/png" href='{% static "img/logo-transparent.png" %}'/>
|
|
<link rel="stylesheet" href='{% static "css/style.css" %}' />
|
|
|
|
{% meta_tags %}
|
|
|
|
<title>{{ self.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>
|