Static site generator + my presonnal website written in rust for some reason.
1<!doctype html> 2<html lang="en"> 3 <head> 4 <title>{% block title %}{% endblock %} Technoduck</title> 5 <link rel="stylesheet" href="/assets/style.css"> 6 <link rel="stylesheet" href="https://unpkg.com/missing.css@1.1.2"> 7 <link rel="stylesheet" href="/assets/old_style.css"> 8 <link rel="icon" href="/assets/favicon.png" type="image/png" /> 9 </head> 10 11 <body> 12 <main> 13 <header> 14 <a href="/"> 15 <img style="display: flex; width: 7em;" align="left" alt="technoduck" src="/assets/technoduck.png"> 16 </a> 17 <div class="table"> 18 <div class="float:left"> 19 <a href="/">Blog</a> | 20 <a href="https://git.technoduck.me" title="Git repository with some of my projects">Git</a> | 21 <a href="https://cv.technoduck.me">Files</a> | 22 <a href="https://wip.technoduck.me">[WIP]</a> | 23 </div> 24 25 <div class="float:right"> 26 <a href="/about">About</a> | 27 <a href="assets/duck.asc">PGP</a> | 28 <a href="mailto:duck@technoduck.me">Mail</a> 29 </div> 30 </div> 31 <p> 32 {% block quote %}{% endblock %} 33 </p> 34 35 </header> 36 {% block content%}{% endblock %} 37 38 <footer> 39 <h4> 40 Copyleft (c) 2022-2024 technoduck 41 </h4> 42 <a href="https://yesterweb.org/no-to-web3/" target="_blank"> 43 <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"> 44 </a> 45 <a href="https://voidlinux.org" target="_blank"> 46 <img alt="A button indicating this site was made with Gnu+Linux, linking to Voidlinux website" src="/assets/gnu-linux.gif"> 47 </a> 48 <a href="https://joinfediverse.wiki/Main_Page/Fancy" target="_blank"> 49 <img alt="Button with Mastodon on it, linking to joinfediverse wiki" src="/assets/mastodon_button_2.gif"> 50 </a> 51 </footer> 52 </main> 53 </body> 54</html>