Static site generator + my presonnal website written in rust for some reason.
at main 2.4 kB view raw
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://tangled.sh/@technoduck.me" title="Git repository with some of my projects">Git</a> | 22 <a href="https://cv.technoduck.me">Files</a> | 23 </div> 24 25 <div class="float:right"> 26 <a href="/about.html">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-2025 technoduck. Made with &#129414; in &#127464;&#127462;. 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>