2021-06-13 22:17:05 +02:00
|
|
|
<!DOCTYPE html>
|
2021-07-13 23:37:04 +02:00
|
|
|
<html lang="en">
|
2021-06-13 22:17:05 +02:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
2022-01-06 21:42:16 +01:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
2021-09-15 21:20:05 +02:00
|
|
|
<link
|
|
|
|
type="text/css"
|
|
|
|
rel="stylesheet"
|
|
|
|
href="{{ get_url(path='css/general.css') }}"
|
|
|
|
/>
|
2021-07-18 22:12:41 +02:00
|
|
|
<meta name="color-scheme" content="dark light" />
|
2022-01-06 21:29:08 +01:00
|
|
|
<meta name="author" content="Jonas Tobias Hopusch" />
|
|
|
|
<meta name="referrer" content="no-referrer" />
|
|
|
|
<meta name="robots" content"all, index, follow" />
|
2021-07-14 14:23:29 +02:00
|
|
|
<link rel="canonical" href="{{ current_url }}" />
|
2021-09-15 21:20:05 +02:00
|
|
|
<link
|
|
|
|
rel="alternate"
|
|
|
|
type="application/atom+xml"
|
|
|
|
href="{{ get_url(path='atom.xml') }}"
|
|
|
|
/>
|
2021-08-17 09:31:23 +02:00
|
|
|
<!--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 %}
|
2021-06-13 22:17:05 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
2021-06-13 23:23:29 +02:00
|
|
|
<header>
|
|
|
|
<div>
|
2021-09-15 21:20:05 +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>
|
2021-07-28 18:23:57 +02:00
|
|
|
<nav class="globalnav">
|
2021-08-20 16:54:27 +02:00
|
|
|
<!--<a class="globalnav-element" href="{{ get_url(path='@/blog/_index.md') }}"> Blog </a>-->
|
2021-09-15 21:20:05 +02:00
|
|
|
<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>
|
2021-07-28 18:23:57 +02:00
|
|
|
</nav>
|
|
|
|
<hr />
|
2021-06-13 23:23:29 +02:00
|
|
|
|
2021-09-15 21:20:05 +02:00
|
|
|
<article id="mainarticle">{% block content %} {% endblock %}</article>
|
2021-06-13 22:17:05 +02:00
|
|
|
|
2021-07-28 18:23:57 +02:00
|
|
|
<hr />
|
2021-06-13 22:17:05 +02:00
|
|
|
<footer>
|
|
|
|
<p>
|
2021-09-15 21:28:10 +02:00
|
|
|
<!--{% set current_year = now() | date(format="%Y",
|
|
|
|
timezone="Europe/Berlin") %} -->
|
|
|
|
|
|
|
|
Copyright
|
|
|
|
<time datetime="{{ current_year }}">{{ current_year }}</time>
|
|
|
|
Jonas Tobias Hopusch (<a
|
2021-09-15 21:20:05 +02:00
|
|
|
rel="noreferer"
|
|
|
|
href="https://gitlab.com/jotoho"
|
2021-06-13 22:17:05 +02:00
|
|
|
>@jotoho</a
|
2021-06-13 23:32:36 +02:00
|
|
|
>) - <strong>All rights reserved</strong>
|
2021-06-13 22:17:05 +02:00
|
|
|
</p>
|
|
|
|
<p>
|
2021-06-13 23:32:36 +02:00
|
|
|
This page is being served using
|
2021-09-15 21:20:05 +02:00
|
|
|
<a
|
|
|
|
rel="noreferer"
|
2021-11-17 23:26:04 +01:00
|
|
|
href="https://caddyserver.com/"
|
|
|
|
>Caddy</a
|
2021-09-15 21:20:05 +02:00
|
|
|
>
|
2021-11-17 23:26:04 +01:00
|
|
|
and was generated using
|
2021-09-15 21:20:05 +02:00
|
|
|
<a rel="noreferer" href="https://www.getzola.org/">Zola</a>. You
|
2021-11-17 23:26:04 +01:00
|
|
|
may contact me via
|
2021-06-13 23:32:36 +02:00
|
|
|
<a href="mailto:webmaster@jotoho.de">email</a>
|
|
|
|
regarding any issues with this website.
|
2021-06-13 22:17:05 +02:00
|
|
|
</p>
|
2021-08-11 22:04:52 +02:00
|
|
|
<p>
|
2021-09-27 10:40:45 +02:00
|
|
|
You can
|
|
|
|
<a href="https://downloads.jotoho.de/openpgp/"
|
|
|
|
>download my OpenPGP public keys here</a
|
|
|
|
>.
|
2021-08-11 22:04:52 +02:00
|
|
|
</p>
|
2021-06-13 22:17:05 +02:00
|
|
|
</footer>
|
|
|
|
</body>
|
|
|
|
</html>
|