Make time or date mentions machine-parsable using time tag #1
1 changed files with 39 additions and 14 deletions
|
@ -3,10 +3,18 @@
|
|||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<link type="text/css" rel="stylesheet" href="{{ get_url(path='css/general.css') }}" />
|
||||
<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 }}" />
|
||||
<link rel="alternate" type="application/atom+xml" href="{{ get_url(path='atom.xml') }}"/>
|
||||
<link
|
||||
rel="alternate"
|
||||
type="application/atom+xml"
|
||||
href="{{ get_url(path='atom.xml') }}"
|
||||
/>
|
||||
<!--Mastodon account ownership verification-->
|
||||
<link rel="me" href="https://ruhr.social/@jotoho" />
|
||||
<title>jotoho.de - A personal website</title>
|
||||
|
@ -15,39 +23,56 @@
|
|||
<body>
|
||||
<header>
|
||||
<div>
|
||||
<a href="{{ config.base_url }}"><h1>jotoho.de - My personal website</h1></a>
|
||||
<a href="{{ config.base_url }}"
|
||||
><h1>jotoho.de - My personal website</h1></a
|
||||
>
|
||||
</div>
|
||||
</header>
|
||||
<nav class="globalnav">
|
||||
<!--<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>
|
||||
<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 />
|
||||
|
||||
<article id="mainarticle">
|
||||
{% block content %} {% endblock %}
|
||||
</article>
|
||||
<article id="mainarticle">{% block content %} {% endblock %}</article>
|
||||
|
||||
<hr />
|
||||
<footer>
|
||||
<p>
|
||||
Copyright {{ now() | date(format="%Y", timezone="Europe/Berlin") }} Jonas Tobias Hopusch (<a
|
||||
rel="noreferer" href="https://gitlab.com/jotoho"
|
||||
Copyright {{ now() | date(format="%Y", timezone="Europe/Berlin")
|
||||
}} Jonas Tobias Hopusch (<a
|
||||
rel="noreferer"
|
||||
href="https://gitlab.com/jotoho"
|
||||
>@jotoho</a
|
||||
>) - <strong>All rights reserved</strong>
|
||||
</p>
|
||||
<p>
|
||||
This page is being served using
|
||||
<a rel="noreferer" href="https://docs.gitlab.com/ee/user/project/pages/">GitLab Pages</a>
|
||||
<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 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>
|
||||
<p>
|
||||
You can download my OpenPGP public keys <a href="https://downloads.jotoho.de/openpgp/">here</a>.
|
||||
You can download my OpenPGP public keys
|
||||
<a href="https://downloads.jotoho.de/openpgp/">here</a>.
|
||||
</p>
|
||||
</footer>
|
||||
</body>
|
||||
|
|
Loading…
Reference in a new issue