24 lines
1,002 B
HTML
24 lines
1,002 B
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<title>{{ site.title }} – {{ page.title }}</title>
|
||
|
||
<link rel="stylesheet" href="/css/style.css" type="text/css">
|
||
{% feed_meta %}
|
||
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
|
||
</head>
|
||
<body>
|
||
<a href="#content" id="skip-to-content">Skip to content</a>
|
||
<h1>{{ site.header }}</h1>
|
||
<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>
|
||
<div id="content">
|
||
{{ content }}
|
||
</div>
|
||
<footer>Made with <a href="https://jekyllrb.com/">Jekyll</a>, hosted on <a href="https://git.franzi.business/franzi.business/website/">Gitea</a>, deployed automatically using Jenkins <img src="https://jenkins.franzi.business/buildStatus/icon?job=franzi.business%2Fwebsite" alt="" /></footer>
|
||
</body>
|
||
</html>
|