diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-07-30 16:26:11 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-07-30 16:26:11 +0200 |
commit | 8029ffb4f5c1e576f0fa54bde9f2434926d122ad (patch) | |
tree | 3fcdbfedec8c652536ec57cd4118243926aadef6 /src | |
parent | 5299dd0b2c8652ece380ac27475968dad68d9051 (diff) |
Add the “Other Websites” page
Diffstat (limited to 'src')
-rw-r--r-- | src/www/index.html | 111 |
1 files changed, 111 insertions, 0 deletions
diff --git a/src/www/index.html b/src/www/index.html new file mode 100644 index 0000000..e2da20f --- /dev/null +++ b/src/www/index.html @@ -0,0 +1,111 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + m4_include(head.html) + </head> + <body> + <header> + <div> + <h1>Other Websites</h1> + m4_include(nav.html) + </div> + + <figure class="quote"> + <blockquote> + <p>The essence of XML is this: the problem it solves is not + hard, and it does not solve the problem well.</p> + </blockquote> + <figcaption> + Phil Wadler + </figcaption> + </figure> + </header> + + <main> + <p> + On this section of the website you can find links to all sorts of + other websites I think are somewhat interesting. Some of these + are my own sites, and some of them aren’t. Feel free to explore. + </p> + + <p>My websites:</p> + <ul> + <li> + <a target="_blank" href="https://archive.thomasvoss.com"> + <cite>archive</cite> — Mario Kart Wii time trials archive + </a> + </li> + <li> + <a target="_blank" href="https://cv.thomasvoss.com"> + <cite>cv</cite> — my résumé/curriculum vitæ + </a> + </li> + <li> + <a target="_blank" href="https://euro.thomasvoss.com"> + <cite>euro</cite> — my euro coin and -banknote collection + </a> + </li> + <li> + <a target="_blank" href="https://git.thomasvoss.com"> + <cite>git</cite> — my git server + </a> + </li> + <li> + <a target="_blank" href="https://paste.thomasvoss.com"> + <cite>paste</cite> — my paste server + </a> + </li> + <li> + <a target="_blank" href="https://retime.mcbe.wtf"> + <cite>retime</cite> — a webtool for retiming speedruns + </a> + </li> + </ul> + + <p>Not my websites:</p> + <ul> + <li> + <a target="_blank" href="https://classicshorts.com"> + <cite>classicshorts</cite> — a collection of short stories + </a> + </li> + <li> + <a target="_blank" href="https://iannis.io"> + <cite>iannis.io</cite> — blog posts on programming topics + </a> + </li> + <li> + <a target="_blank" href="https://redblobgames.com"> + <cite>redblobgames</cite> — algorithms in the context of video games + </a> + </li> + <li> + <a target="_blank" href="https://tdmm.eu"> + <cite>tdmm</cite> — blog posts on low-level development + </a> + </li> + <li> + <a target="_blank" href="https://blog.bal-e.org/"> + <cite>bal-e</cite> — it’s like tdmm.eu I guess + </a> + </li> + <li> + <a target="_blank" href="http://textfiles.com"> + <cite>textfiles</cite> — a collection of thousands of plain-text files + </a> + </li> + <li> + <a target="_blank" href="https://cat-v.org"> + <cite>cat-v</cite> — <q>The Internet is not for sissies.</q> + </a> + </li> + </ul> + </main> + + <hr> + + <footer> + m4_footer + </footer> + </body> +</html> |