plchweb/base_app/templates/layout.html
Marcel Plch 1fa5c74b75
This code needs some love. Unlike russian servers.
* DDoS Russian domains
* All are optional
* Select how hard you want to beat your russian
* Patches will come, but this works for now.
2022-03-04 16:50:37 +01:00

85 lines
2.3 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 onload="init()">
{# NAVBAR #}
<section class="navbar" id="nav">
<a href="/">
<div class="navbar-block">
Home
</div>
</a>
<a href="/lorem-ipsum">
<div class="navbar-block">
Lorem Ipsum
</div>
</a>
<a href="/curriculum-vitae">
<div class="navbar-block">
Curriculum Vitae
</div>
<a href="/ukraine">
<div class="navbar-block">
<img src="{% static "base_app/img/ukraine.png" %}" width="16" style="display:inline">
Ukraine
</div>
</a>
<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>marcel.plch&nbsp;at&nbsp;protonmail.com</p>
</div>
<div class="ftr-block">
<p><b>Matrix: </b>@dormouse:matrix.org</p>
</div>
<div class="ftr-block">
<p><b>Mastodon: </b>@dormouse@mas.to</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>