plchweb/base_app/templates/layout.html
Marcel Plch 07ea4f1ca2 Recover old static files.
There's nothing wrong about them.
Let's just recover and tweak them instead
of a rewrite.
2023-06-21 07:55:19 +02:00

45 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html>
<head>
{% load static %}
<title>{{ title }}</title>
<link rel="icon" type="image/png" href="">
{# REQUIRED META TAGS #}
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
{# CSS #}
<link rel="stylesheet" href="{% static "base_app/css/master.css" %}">
{% block headerExtension %}
{% endblock %}
</head>
<body>
{# CONTENT #}
{% block content %}
{% endblock %}
{# FOOTER #}
<footer>
<div class="ftr">
<div class="ftr-block">
<p><b>E-mail: </b>dormouse&nbsp;at&nbsp;plch(It's this very domain.)xyz</p>
</div>
<div class="ftr-block">
<p><b>Jabber/XMPP: </b>dormouse@plch.xyz</p>
</div>
</div>
<div class="key">
<div>
<p><b>GPG&nbsp;key:&nbsp;</b>DBDE&nbsp;B5B4&nbsp;65C0&nbsp;2C8A&nbsp;06DD&nbsp;50CE&nbsp;55AE&nbsp;59B9&nbsp;37DD&nbsp;3A63</p>
</div>
</div>
</footer>
</body>
</html>