34 lines
943 B
HTML
Raw Normal View History

2016-02-21 22:09:59 +01:00
<!DOCTYPE html>
<html>
<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-02-21 22:09:59 +01: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>
<body>
<main>
<nav class="blue-grey darken-1">
<div class="nav-wrapper">
<a href="#" class="brand-logo right">{{ settings.title }}</a>
{% if settings.menu -%}
{% include 'menu.html' %}
{% endif -%}
</div>
</nav>
{% block content %}
{% endblock %}
</main>
{% include 'footer.html' %}
</body>
</html>