plchweb/base_app/templates/layout.html

46 lines
1.2 KiB
HTML
Raw Normal View History

2021-07-19 13:13:27 +00:00
<!DOCTYPE html>
<html>
<head>
{% load static %}
<title>{{ title }}</title>
<link rel="icon" type="image/png" href="">
2021-07-19 18:56:15 +00:00
{# REQUIRED META TAGS #}
2021-07-19 13:13:27 +00:00
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
2021-07-19 18:56:15 +00:00
{# CSS #}
2021-07-19 13:13:27 +00:00
<link rel="stylesheet" href="{% static "base_app/css/master.css" %}">
2021-07-19 18:56:15 +00:00
{% block headerExtension %}
{% endblock %}
2021-07-19 13:13:27 +00:00
</head>
<body>
2021-07-19 13:13:27 +00:00
2021-07-19 18:56:15 +00:00
{# CONTENT #}
2021-07-19 13:13:27 +00:00
{% block content %}
{% endblock %}
2021-07-19 18:56:15 +00:00
{# 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>
2021-07-19 18:56:15 +00:00
</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>
2021-07-19 18:56:15 +00:00
</div>
</div>
</footer>
2021-07-19 13:13:27 +00:00
</body>
2021-07-19 13:13:27 +00:00
</html>