fliegendewurst.eu/templates/base.html
FliegendeWurst e5da8bffb9 Move repo
2023-11-13 23:48:35 +01:00

35 lines
1.3 KiB
HTML

<!DOCTYPE html>
{% block html_tag %} {% endblock %}
<head>
<title>{% block title %} {% endblock %}</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="/favicon.ico">
<link rel="stylesheet" href="/main.css">
</head>
<body>
<main>
<h1 id="header"><img src="/favicon.ico" id="favicon" alt="">FliegendeWurst's corner of the WWW</h1>
{% block content %} {% endblock %}
<hr>
<center>
<a href="https://github.com/FliegendeWurst/"><img src="/assets/GitHub FliegendeWurst.svg"></a>
<a href="https://gitlab.com/arnekeller"><img src="/assets/GitLab arnekeller.svg"></a>
<a href="https://git.fliegendewurst.eu/explore/repos"><img src="/assets/Gitea.svg"></a>
<br>
<small>
© FliegendeWurst, 2022-2023 (excluding evident exceptions).
<a href="https://git.fliegendewurst.eu/arnekeller/fliegendewurst.eu">Source repository</a>.
<br>
This work is licensed under a
<a rel="license" href="http://creativecommons.org/licenses/by/4.0/">
Creative Commons Attribution 4.0 International License</a>.
<br>
<small>Website design inspired by <a href="https://isabelroses.com/">Isabel Roses</a>'s website and <a href="https://utdemir.com/">Utku Demir</a>'s website.</small>
</small>
</center>
</main>
</body>
</html>