22 lines
565 B
HTML
22 lines
565 B
HTML
<!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">
|
|
|
|
<title>{{ page.title }}</title>
|
|
|
|
<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 %}
|
|
<main>
|
|
{{ content }}
|
|
</main>
|
|
{% include footer.html %}
|
|
</body>
|
|
</html>
|