36 lines
964 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
2016-04-05 16:48:53 +02:00
<head>
<meta charset="UTF-8">
{% block css %}
{% endblock %}
2016-04-18 14:27:28 +02:00
{% if settings.rss -%}
<link rel="alternate" type="application/rss+xml" title="{{ settings.title }}" href="{{ settings.url }}/feed.xml" />
{% endif -%}
2016-04-05 16:48:53 +02:00
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>{{ settings.title }}</title>
</head>
2016-04-05 16:48:53 +02:00
<body>
2016-04-05 16:48:53 +02:00
<div class="gallery-header">
{% block logo %}
{% endblock %}
<h1>{{ settings.title }}</h1>
{% if settings.sub_title -%}<h4>{{ settings.sub_title }}</h4>{% endif -%}
<hr>
{% if settings.menu -%}
{% include 'menu.html' %}
{% endif -%}
</div>
2016-04-05 16:48:53 +02:00
{% block content %}
{% endblock %}
2016-04-05 16:48:53 +02:00
{% include 'footer.html' %}
</body>
</html>