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 <link rel="me" href="https://infosec.exchange/@technoduck" /> 10 </head> 11 12 <body> 13 <main> 14 <header> 15 <a href="/"> 16 <img style="display: flex; width: 7em;" align="left" alt="technoduck" src="/assets/technoduck.png"> 17 </a> 18 <div class="table"> 19 <div class="float:left"> 20 <a href="/">Blog</a> | 21 <a href="https://git.technoduck.me" title="Git repository with some of my projects">Git</a> | 22 <a href="https://cv.technoduck.me">Files</a> | 23 <a href="https://wip.technoduck.me">[WIP]</a> | 24 </div> 25 26 <div class="float:right"> 27 <a href="/about.html">About</a> | 28 <a href="assets/duck.asc">PGP</a> | 29 <a href="mailto:duck@technoduck.me">Mail</a> 30 </div> 31 </div> 32 <p> 33 {% block quote %}{% endblock %} 34 </p> 35 36 </header> 37 {% block content%}{% endblock %} 38 39 <footer> 40 <h4> 41 Copyleft (c) 2022-2025 technoduck. Made with &#129414; in &#127464;&#127462;. 42 </h4> 43 <a href="https://yesterweb.org/no-to-web3/" target="_blank"> 44 <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"> 45 </a> 46 <a href="https://voidlinux.org" target="_blank"> 47 <img alt="A button indicating this site was made with Gnu+Linux, linking to Voidlinux website" src="/assets/gnu-linux.gif"> 48 </a> 49 <a href="https://joinfediverse.wiki/Main_Page/Fancy" target="_blank"> 50 <img alt="Button with Mastodon on it, linking to joinfediverse wiki" src="/assets/mastodon_button_2.gif"> 51 </a> 52 </footer> 53 </main> 54 </body> 55</html>