Marcel Plch
8752197c2c
It is not entirely fixed, but it's at least generated from django data now. Should make it fairly easier to make it behave better.
64 lines
1.8 KiB
HTML
64 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
{% load static %}
|
|
|
|
<title>{{ title }}</title>
|
|
<link rel="icon" type="image/png" href="{% static "base_app/img/dormouse.svg" %}">
|
|
|
|
{# 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>
|
|
<body onload="init()">
|
|
{# NAVBAR #}
|
|
<section class="navbar" id="nav">
|
|
{% for path in paths %}
|
|
<a href="{{ path.href }}">
|
|
<div class="navbar-block">
|
|
{{ path.name }}
|
|
</div>
|
|
</a>
|
|
{% endfor %}
|
|
|
|
<div class="navbar-button"
|
|
onclick="navbar_click()"
|
|
>
|
|
>
|
|
</div>
|
|
|
|
</section>
|
|
|
|
{# 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>
|
|
<script src="{% static "base_app/js/master.js" %}"></script>
|
|
</body>
|
|
|
|
</html>
|