my-website/templates/base.html

54 lines
2.2 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
2021-07-13 23:37:04 +02:00
<html lang="en">
<head>
<meta charset="utf-8" />
2021-06-13 23:23:29 +02:00
<meta name="viewport" content="width=device-width, initial-scale=1" />
2021-07-18 22:12:41 +02:00
<link type="text/css" rel="stylesheet" href="{{ get_url(path='css/general.css') }}" />
<meta name="color-scheme" content="dark light" />
<link rel="canonical" href="{{ current_url }}" />
<!--Mastodon account ownership verification-->
<link rel="me" href="https://ruhr.social/@jotoho" />
2021-06-13 23:23:29 +02:00
<title>jotoho.de - A personal website</title>
2021-07-13 23:39:47 +02:00
{% block metadata %} {% endblock %}
</head>
<body>
2021-06-13 23:23:29 +02:00
<header>
<div>
2021-07-18 22:12:41 +02:00
<a href="{{ config.base_url }}"><h1>jotoho.de - My personal website</h1></a>
2021-06-13 23:23:29 +02:00
</div>
</header>
<nav class="globalnav">
2021-07-30 00:13:09 +02:00
<a class="globalnav-element" href="{{ get_url(path='@/blog/_index.md') }}"> Blog </a>
<a class="globalnav-element" href="{{ get_url(path='@/servers/index.md') }}"> Servers </a>
<a class="globalnav-element" href="{{ get_url(path='@/profiles/index.md') }}"> Profiles </a>
</nav>
<hr />
2021-06-13 23:23:29 +02:00
2021-08-17 11:07:05 +02:00
<article id="mainarticle">
{% block content %} {% endblock %}
</article>
<hr />
<footer>
<p>
Copyright {{ now() | date(format="%Y", timezone="Europe/Berlin") }} Jonas Tobias Hopusch (<a
2021-06-13 23:38:29 +02:00
rel="noreferer" href="https://gitlab.com/jotoho"
>@jotoho</a
2021-06-13 23:32:36 +02:00
>) - <strong>All rights reserved</strong>
</p>
<p>
2021-06-13 23:32:36 +02:00
This page is being served using
<a rel="noreferer" href="https://docs.gitlab.com/ee/user/project/pages/">GitLab Pages</a>
and created with the help of
<a rel="noreferer" href="https://www.getzola.org/">Zola</a>.
You can contact me via
<a href="mailto:webmaster@jotoho.de">email</a>
regarding any issues with this website.
</p>
2021-08-11 22:04:52 +02:00
<p>
You can download my OpenPGP public keys <a href="https://downloads.jotoho.de/openpgp/">here</a>.
</p>
</footer>
</body>
</html>