2019-03-12 13:49:49 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="de" class="no-js page-home">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
2019-03-14 13:33:39 +01:00
|
|
|
<title>
|
|
|
|
{% if page.title and page.title != "Home" %}
|
|
|
|
{{ page.title }} · {{ site.title }}
|
|
|
|
{% else %}
|
|
|
|
{{ site.title }}
|
|
|
|
{% endif %}
|
|
|
|
</title>
|
2019-03-12 13:49:49 +01:00
|
|
|
|
|
|
|
<link rel="shortcut icon" type="image/png" href="/assets/images/logo.png"/>
|
|
|
|
<link rel="stylesheet" href="/assets/css/styles.css">
|
|
|
|
{% feed_meta %}
|
|
|
|
{% seo %}
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{% include header.html %}
|
|
|
|
{% include navigation.html %}
|
|
|
|
<main>
|
|
|
|
{{ content }}
|
|
|
|
</main>
|
|
|
|
{% include footer.html %}
|
|
|
|
</body>
|
|
|
|
</html>
|