25 lines
877 B
HTML
25 lines
877 B
HTML
<!DOCTYPE html>
|
||
<html lang="de">
|
||
<head>
|
||
<title>{{ site.title }} – {{ page.title }}</title>
|
||
|
||
<link rel="stylesheet" href="/css/style.css" type="text/css">
|
||
{% if page.shittylayout == true %}
|
||
<link rel="stylesheet" href="/css/shitty.css" type="text/css">
|
||
{% endif %}
|
||
{% feed_meta %}
|
||
</head>
|
||
<body>
|
||
<a href="#content" id="skip-to-content">Skip to content</a>
|
||
<nav>
|
||
{% for item in site.data.navigation %}
|
||
<a href="{{ item.link }}"{% if page.url == item.link %} class="current-page"{% endif %}>{{ item.name }}</a>
|
||
{% endfor %}
|
||
</nav>
|
||
<h1>{{ site.header }}</h1>
|
||
<div id="content">
|
||
{{ content }}
|
||
</div>
|
||
<footer>Made with <a href="https://jekyllrb.com/">Jekyll</a>, hosted on <a href="https://git.kunsmann.eu/franzi.business/website/">Gitea</a></footer>
|
||
</body>
|
||
</html>
|