54 lines
2.3 KiB
HTML
54 lines
2.3 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>{% block title %}{% endblock %} Technoduck</title>
|
|
<link rel="stylesheet" href="/assets/style.css">
|
|
<link rel="stylesheet" href="https://unpkg.com/missing.css@1.1.2">
|
|
<link rel="stylesheet" href="/assets/old_style.css">
|
|
<link rel="icon" href="/assets/favicon.png" type="image/png" />
|
|
</head>
|
|
|
|
<body>
|
|
<main>
|
|
<header>
|
|
<a href="/">
|
|
<img style="display: flex; width: 7em;" align="left" alt="technoduck" src="/assets/technoduck.png">
|
|
</a>
|
|
<div class="table">
|
|
<div class="float:left">
|
|
<a href="/">Blog</a> |
|
|
<a href="https://git.technoduck.me" title="Git repository with some of my projects">Git</a> |
|
|
<a href="https://cv.technoduck.me">Files</a> |
|
|
<a href="https://wip.technoduck.me">[WIP]</a> |
|
|
</div>
|
|
|
|
<div class="float:right">
|
|
<a href="/about">About</a> |
|
|
<a href="assets/duck.asc">PGP</a> |
|
|
<a href="mailto:duck@technoduck.me">Mail</a>
|
|
</div>
|
|
</div>
|
|
<p>
|
|
{% block quote %}{% endblock %}
|
|
</p>
|
|
|
|
</header>
|
|
{% block content%}{% endblock %}
|
|
|
|
<footer>
|
|
<h4>
|
|
Copyleft (c) 2022-2024 technoduck
|
|
</h4>
|
|
<a href="https://yesterweb.org/no-to-web3/" target="_blank">
|
|
<img alt="a button that says 'keep the web free, say no to web3', linking to a page about web3" src="https://auzziejay.com/images/noweb32.gif">
|
|
</a>
|
|
<a href="https://voidlinux.org" target="_blank">
|
|
<img alt="A button indicating this site was made with Gnu+Linux, linking to Voidlinux website" src="/assets/gnu-linux.gif">
|
|
</a>
|
|
<a href="https://joinfediverse.wiki/Main_Page/Fancy" target="_blank">
|
|
<img alt="Button with Mastodon on it, linking to joinfediverse wiki" src="/assets/mastodon_button_2.gif">
|
|
</a>
|
|
</footer>
|
|
</main>
|
|
</body>
|
|
</html>
|