26 lines
897 B
HTML
Executable file
26 lines
897 B
HTML
Executable file
{% load static wagtailuserbar %}
|
|
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<title>{% block htmltitle %}{% if self.seo_title %}{{ self.seo_title }}{% else %}{{ self.title }}{% endif %}{% endblock %}</title>
|
|
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width" />
|
|
<meta name="superfish" content="nofish" />
|
|
|
|
<link rel="stylesheet" type="text/css" href="{% static 'css/project.css' %}">
|
|
|
|
{% block extra_css %}{% endblock %}
|
|
</head>
|
|
|
|
<body class="{% block body_class %}{% endblock %}" id="page-top">
|
|
{% wagtailuserbar %}
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
<script type="text/javascript" src="{% static 'js/project.js' %}"></script>
|
|
|
|
{% block extra_js %}{% endblock %}
|
|
</body>
|
|
</html>
|