fliegendewurst.eu/templates/base.html
2023-10-03 14:53:44 +02:00

28 lines
852 B
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>
<small>
© FliegendeWurst, 2022-2023.
Source: <a href="https://github.com/FliegendeWurst/fliegendewurst.eu">github.com/FliegendeWurst/fliegendewurst.eu</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>.
</small>
</center>
</main>
</body>
</html>