forked from rc/aircox
72 lines
2.0 KiB
HTML
72 lines
2.0 KiB
HTML
{% load staticfiles %}
|
|
|
|
<html>
|
|
<head>
|
|
{# FIXME: page tags #}
|
|
<meta charset="utf-8">
|
|
<meta name="application-name" content="aircox-cms">
|
|
<meta name="description" content="{{ website.description }}">
|
|
<meta name="keywords" content="{{ website.tags }}">
|
|
|
|
<link rel="stylesheet" href="{% static "aircox_cms/styles.css" %}" type="text/css">
|
|
{% if website.styles %}
|
|
<link rel="stylesheet" href="{% static website.styles %}" type="text/css">
|
|
{% endif %}
|
|
<title>{{ website.name }} {% if title %}- {{ title }} {% endif %}</title>
|
|
</head>
|
|
<body>
|
|
{% block header %}
|
|
{% if menus.header %}
|
|
{{ menus.header|safe }}
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
<div class="page-container">
|
|
{% if menus.top %}
|
|
{{ menus.top|safe }}
|
|
{% endif %}
|
|
|
|
<div class="page">
|
|
{% if menus.left %}
|
|
{{ menus.left|safe }}
|
|
{% endif %}
|
|
|
|
<main>
|
|
{% block pre_title %}
|
|
{% endblock %}
|
|
<h1>
|
|
{% block title %}
|
|
{{ title }}
|
|
{% endblock %}
|
|
</h1>
|
|
{% block post_title %}
|
|
{% endblock %}
|
|
<div class="content">
|
|
{% block content %}
|
|
{% endblock %}
|
|
</div>
|
|
</main>
|
|
|
|
{% if menus.right %}
|
|
{{ menus.right|safe }}
|
|
{% endif %}
|
|
</div>
|
|
|
|
{% if menus.page_bottom %}
|
|
{{ menus.page_bottom|safe }}
|
|
{% endif %}
|
|
</div>
|
|
|
|
{% block footer %}
|
|
{% if menus.footer %}
|
|
{{ menus.footer|safe }}
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% if menus.bottom %}
|
|
{{ menus.bottom|safe }}
|
|
{% endif %}
|
|
</body>
|
|
</html>
|
|
|