plchweb/base_app/templates/layout.html

62 lines
1.6 KiB
HTML
Raw Permalink Normal View History

2021-07-19 13:13:27 +00:00
<!DOCTYPE html>
<html>
<head>
{% load static %}
<title>{{ title }}</title>
2023-06-21 13:09:51 +00:00
<link rel="icon" type="image/png" href="{% static "base_app/img/dormouse.svg" %}">
2021-07-19 13:13:27 +00:00
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>
2023-06-21 13:09:51 +00:00
<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 %}
2023-06-21 13:09:51 +00:00
<div class="navbar-button"
onclick="navbar_click()"
>
>
</div>
</section>
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.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>
2023-06-21 13:09:51 +00:00
<script src="{% static "base_app/js/master.js" %}"></script>
2021-07-19 13:13:27 +00:00
</body>
2021-07-19 13:13:27 +00:00
</html>