07ea4f1ca2
There's nothing wrong about them. Let's just recover and tweak them instead of a rewrite.
45 lines
1.2 KiB
HTML
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 at 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 key: </b>DBDE B5B4 65C0 2C8A 06DD 50CE 55AE 59B9 37DD 3A63</p>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
</body>
|
|
|
|
</html>
|