diff --git a/content/external/_index.md b/content/external/_index.md
deleted file mode 100644
index d706c94..0000000
--- a/content/external/_index.md
+++ /dev/null
@@ -1,7 +0,0 @@
-+++
-title = "Blog"
-sort_by = "date"
-template = "external.html"
-page_template = "page.html"
-draft = false
-+++
diff --git a/content/external/external.toml b/content/external/external.toml
deleted file mode 100644
index cf28ab7..0000000
--- a/content/external/external.toml
+++ /dev/null
@@ -1,35 +0,0 @@
-[0-smart-questions]
-title = "How To Ask Questions The Smart Way"
-author = "Eric S. Raymond, Rick Moen"
-permalink = "http://catb.org/~esr/faqs/smart-questions.html"
-archive = "https://archive.ph/4Nsm2"
-
-[1-humanitys-endgame]
-title = "Humanity's Endgame"
-author = "Henry Wismayer"
-permalink = "https://www.noemamag.com/humanitys-endgame/"
-archive = "https://archive.ph/wvnUr"
-
-[2-if-all-the-world-were-a-monorepo]
-title = "If all the world were a monorepo"
-author = "Julie Tibshirani"
-permalink = "https://jtibs.substack.com/p/if-all-the-world-were-a-monorepo"
-archive = "https://archive.ph/5ZOw2"
-
-[3-microsoft-broke-my-voice]
-title = "Microsoft broke my voice"
-author = "a_lilian"
-permalink = "https://www.youtube.com/watch?v=LKcT-aQuIFs"
-suffix = "YouTube"
-
-[4-burn-after-watching]
-title = "Burn After Watching"
-author = "a_lilian"
-permalink = "https://www.youtube.com/watch?v=-IargH0hL-s"
-suffix = "YouTube"
-
-[5-lost-ephemera]
-title = "Lost Ephemera - The traces we left behind"
-author = "a_lilian"
-permalink = "https://www.youtube.com/watch?v=xbg-Jjfw2Dg"
-suffix = "YouTube"
diff --git a/static/88x31/abc.gif b/static/abc.gif
similarity index 100%
rename from static/88x31/abc.gif
rename to static/abc.gif
diff --git a/static/88x31/acab.gif b/static/acab.gif
similarity index 100%
rename from static/88x31/acab.gif
rename to static/acab.gif
diff --git a/static/88x31/acidnow.jpg b/static/acidnow.jpg
similarity index 100%
rename from static/88x31/acidnow.jpg
rename to static/acidnow.jpg
diff --git a/static/88x31/anarchynow.gif b/static/anarchynow.gif
similarity index 100%
rename from static/88x31/anarchynow.gif
rename to static/anarchynow.gif
diff --git a/static/88x31/antidiscord.gif b/static/antidiscord.gif
similarity index 100%
rename from static/88x31/antidiscord.gif
rename to static/antidiscord.gif
diff --git a/static/88x31/antinazi.gif b/static/antinazi.gif
similarity index 100%
rename from static/88x31/antinazi.gif
rename to static/antinazi.gif
diff --git a/static/88x31/ao3.gif b/static/ao3.gif
similarity index 100%
rename from static/88x31/ao3.gif
rename to static/ao3.gif
diff --git a/static/88x31/autism.png b/static/autism.png
similarity index 100%
rename from static/88x31/autism.png
rename to static/autism.png
diff --git a/static/88x31/badapple.webp b/static/badapple.webp
similarity index 100%
rename from static/88x31/badapple.webp
rename to static/badapple.webp
diff --git a/static/88x31/blahaj.png b/static/blahaj.png
similarity index 100%
rename from static/88x31/blahaj.png
rename to static/blahaj.png
diff --git a/static/88x31/boykisser.png b/static/boykisser.png
similarity index 100%
rename from static/88x31/boykisser.png
rename to static/boykisser.png
diff --git a/static/88x31/briish.gif b/static/briish.gif
similarity index 100%
rename from static/88x31/briish.gif
rename to static/briish.gif
diff --git a/static/88x31/button-2hu.gif b/static/button-2hu.gif
similarity index 100%
rename from static/88x31/button-2hu.gif
rename to static/button-2hu.gif
diff --git a/static/88x31/button-css.gif b/static/button-css.gif
similarity index 100%
rename from static/88x31/button-css.gif
rename to static/button-css.gif
diff --git a/static/88x31/button-grid.gif b/static/button-grid.gif
similarity index 100%
rename from static/88x31/button-grid.gif
rename to static/button-grid.gif
diff --git a/static/88x31/button-html.gif b/static/button-html.gif
similarity index 100%
rename from static/88x31/button-html.gif
rename to static/button-html.gif
diff --git a/static/88x31/button-ublock.gif b/static/button-ublock.gif
similarity index 100%
rename from static/88x31/button-ublock.gif
rename to static/button-ublock.gif
diff --git a/static/88x31/canada.gif b/static/canada.gif
similarity index 100%
rename from static/88x31/canada.gif
rename to static/canada.gif
diff --git a/static/88x31/capstasher.png b/static/capstasher.png
similarity index 100%
rename from static/88x31/capstasher.png
rename to static/capstasher.png
diff --git a/static/88x31/ccs.gif b/static/ccs.gif
similarity index 100%
rename from static/88x31/ccs.gif
rename to static/ccs.gif
diff --git a/static/colorscheme.js b/static/colorscheme.js
deleted file mode 100644
index e4ed0e8..0000000
--- a/static/colorscheme.js
+++ /dev/null
@@ -1,20 +0,0 @@
-var radios = document.getElementsByName("color-scheme");
-var prev = localStorage.getItem("color-scheme");
-for (var i = 0; i < radios.length; i++) {
- var _this = radios[i];
- _this.checked = _this.value == prev;
- radios[i].addEventListener("change", function() {
- if (this.value !== prev) {
- prev = this.value;
- localStorage.setItem("color-scheme", this.value);
- }
- });
-}
-var button = document.getElementById("clear-color-scheme");
-button.addEventListener("click", function() {
- for (var i = 0; i < radios.length; i++) {
- var _this = radios[i];
- _this.checked = false;
- localStorage.removeItem("color-scheme");
- }
-});
diff --git a/static/88x31/cuteanimegirls.gif b/static/cuteanimegirls.gif
similarity index 100%
rename from static/88x31/cuteanimegirls.gif
rename to static/cuteanimegirls.gif
diff --git a/static/88x31/fftake.gif b/static/fftake.gif
similarity index 100%
rename from static/88x31/fftake.gif
rename to static/fftake.gif
diff --git a/static/88x31/fucknfts.png b/static/fucknfts.png
similarity index 100%
rename from static/88x31/fucknfts.png
rename to static/fucknfts.png
diff --git a/static/88x31/hl.gif b/static/hl.gif
similarity index 100%
rename from static/88x31/hl.gif
rename to static/hl.gif
diff --git a/static/88x31/ircworks.gif b/static/ircworks.gif
similarity index 100%
rename from static/88x31/ircworks.gif
rename to static/ircworks.gif
diff --git a/static/88x31/keysmash.gif b/static/keysmash.gif
similarity index 100%
rename from static/88x31/keysmash.gif
rename to static/keysmash.gif
diff --git a/static/88x31/lain.gif b/static/lain.gif
similarity index 100%
rename from static/88x31/lain.gif
rename to static/lain.gif
diff --git a/static/88x31/lesbian.png b/static/lesbian.png
similarity index 100%
rename from static/88x31/lesbian.png
rename to static/lesbian.png
diff --git a/static/88x31/linuxfriendly.gif b/static/linuxfriendly.gif
similarity index 100%
rename from static/88x31/linuxfriendly.gif
rename to static/linuxfriendly.gif
diff --git a/static/88x31/medjed.jpg b/static/medjed.jpg
similarity index 100%
rename from static/88x31/medjed.jpg
rename to static/medjed.jpg
diff --git a/static/88x31/minecraft.gif b/static/minecraft.gif
similarity index 100%
rename from static/88x31/minecraft.gif
rename to static/minecraft.gif
diff --git a/static/88x31/moosyuBtn.gif b/static/moosyuBtn.gif
similarity index 100%
rename from static/88x31/moosyuBtn.gif
rename to static/moosyuBtn.gif
diff --git a/static/88x31/nb.png b/static/nb.png
similarity index 100%
rename from static/88x31/nb.png
rename to static/nb.png
diff --git a/static/88x31/neovim.gif b/static/neovim.gif
similarity index 100%
rename from static/88x31/neovim.gif
rename to static/neovim.gif
diff --git a/static/88x31/nixos.png b/static/nixos.png
similarity index 100%
rename from static/88x31/nixos.png
rename to static/nixos.png
diff --git a/static/88x31/nonhuman.png b/static/nonhuman.png
similarity index 100%
rename from static/88x31/nonhuman.png
rename to static/nonhuman.png
diff --git a/static/nonoscript.js b/static/nonoscript.js
deleted file mode 100644
index cbe8bec..0000000
--- a/static/nonoscript.js
+++ /dev/null
@@ -1,9 +0,0 @@
-function nonoscriptImplementer() {
- var nonoscript = document.getElementsByClassName("nonoscript");
- console.log(nonoscript);
- for (let item of nonoscript) {
- console.log("meep!");
- item.classList.remove("nonoscript");
- }
-}
-window.onload = nonoscriptImplementer();
diff --git a/static/88x31/openeyes.jpg b/static/openeyes.jpg
similarity index 100%
rename from static/88x31/openeyes.jpg
rename to static/openeyes.jpg
diff --git a/static/88x31/ourpaws.png b/static/ourpaws.png
similarity index 100%
rename from static/88x31/ourpaws.png
rename to static/ourpaws.png
diff --git a/static/88x31/pgp-now.gif b/static/pgp-now.gif
similarity index 100%
rename from static/88x31/pgp-now.gif
rename to static/pgp-now.gif
diff --git a/static/88x31/piracy.png b/static/piracy.png
similarity index 100%
rename from static/88x31/piracy.png
rename to static/piracy.png
diff --git a/static/88x31/pluralproud.png b/static/pluralproud.png
similarity index 100%
rename from static/88x31/pluralproud.png
rename to static/pluralproud.png
diff --git a/static/88x31/pokemon.jpg b/static/pokemon.jpg
similarity index 100%
rename from static/88x31/pokemon.jpg
rename to static/pokemon.jpg
diff --git a/static/88x31/polyamory.png b/static/polyamory.png
similarity index 100%
rename from static/88x31/polyamory.png
rename to static/polyamory.png
diff --git a/static/88x31/qalle.png b/static/qalle.png
similarity index 100%
rename from static/88x31/qalle.png
rename to static/qalle.png
diff --git a/static/88x31/queer.png b/static/queer.png
similarity index 100%
rename from static/88x31/queer.png
rename to static/queer.png
diff --git a/static/88x31/rainysource.png b/static/rainysource.png
similarity index 100%
rename from static/88x31/rainysource.png
rename to static/rainysource.png
diff --git a/static/88x31/roly-saynotoweb3.gif b/static/roly-saynotoweb3.gif
similarity index 100%
rename from static/88x31/roly-saynotoweb3.gif
rename to static/roly-saynotoweb3.gif
diff --git a/static/88x31/trans.png b/static/trans.png
similarity index 100%
rename from static/88x31/trans.png
rename to static/trans.png
diff --git a/static/88x31/trn.png b/static/trn.png
similarity index 100%
rename from static/88x31/trn.png
rename to static/trn.png
diff --git a/static/88x31/xenia.png b/static/xenia.png
similarity index 100%
rename from static/88x31/xenia.png
rename to static/xenia.png
diff --git a/templates/colorscheme.html b/templates/colorscheme.html
index 50fe70d..e8ac7f2 100644
--- a/templates/colorscheme.html
+++ b/templates/colorscheme.html
@@ -49,6 +49,26 @@
-
diff --git a/templates/external.html b/templates/external.html
deleted file mode 100644
index 0650686..0000000
--- a/templates/external.html
+++ /dev/null
@@ -1,19 +0,0 @@
-{% extends "base.html" %}
-
-{% block content %}
-Things I find value in sharing
-
- {% set data = load_data(path="content/external/external.toml") %}
- {% for k, v in data %}
-
-
-
-
-
+
+
+
+
hellnet.work