plchweb/base_app/templates/layout.html
Marcel Plch 8752197c2c
Fix sidebar
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.
2024-11-30 01:50:45 +01:00

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&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>
<script src="{% static "base_app/js/master.js" %}"></script>
</body>
</html>