the home site for me: also iteration 3 or 4 of my site

chore: make the by field funny quips

Changed files
+8 -1
static
blog
analyzing-implications-of-online-safety-legislation
garmin-vivoactive-homeassistant
hilton-tomfoolery
install-truenas-core-proxmox
monaspace-vs-code-install
ssd-removal-mbp-2017
test-post
pfp
tags
archival
essays
hilton
meta
reverse-engineering
teardown
tutorial
verify
tools
static/blog/analyzing-implications-of-online-safety-legislation/og.png

This is a binary file and will not be displayed.

static/blog/garmin-vivoactive-homeassistant/og.png

This is a binary file and will not be displayed.

static/blog/hilton-tomfoolery/og.png

This is a binary file and will not be displayed.

static/blog/install-truenas-core-proxmox/og.png

This is a binary file and will not be displayed.

static/blog/monaspace-vs-code-install/og.png

This is a binary file and will not be displayed.

static/blog/ssd-removal-mbp-2017/og.png

This is a binary file and will not be displayed.

static/blog/test-post/og.png

This is a binary file and will not be displayed.

static/og.png

This is a binary file and will not be displayed.

static/pfp/og.png

This is a binary file and will not be displayed.

static/tags/archival/og.png

This is a binary file and will not be displayed.

static/tags/essays/og.png

This is a binary file and will not be displayed.

static/tags/hilton/og.png

This is a binary file and will not be displayed.

static/tags/meta/og.png

This is a binary file and will not be displayed.

static/tags/og.png

This is a binary file and will not be displayed.

static/tags/reverse-engineering/og.png

This is a binary file and will not be displayed.

static/tags/teardown/og.png

This is a binary file and will not be displayed.

static/tags/tutorial/og.png

This is a binary file and will not be displayed.

static/verify/og.png

This is a binary file and will not be displayed.

+8 -1
tools/genOG.ts
···
case "blog":
type = "Blog";
if (file.split("/")[1] !== "index.html") {
-
by = "<p>By Kieran Klukas</p>";
} else {
by = "<p>All authored by Kieran Klukas</p>";
}
break;
case "verify":
case "pfp":
type = "Slash Page";
break;
case "tags":
if (file.split("/")[1] === "index.html") {
type = "Tags";
} else {
type = "Tag";
}
break;
case "index.html":
type = "Root";
break;
}
···
case "blog":
type = "Blog";
if (file.split("/")[1] !== "index.html") {
+
by = "<p>A post ... yeah thats about it</p>";
} else {
by = "<p>All authored by Kieran Klukas</p>";
}
break;
case "verify":
+
type = "Slash Page";
+
by = "<p>So you can stalk me 💀</p>";
+
break;
case "pfp":
type = "Slash Page";
+
by = "<p>Want to stare at my pretty face?</p>";
break;
case "tags":
if (file.split("/")[1] === "index.html") {
type = "Tags";
+
by = "<p>A total archive!</p>";
} else {
type = "Tag";
+
by = "<p>Find more posts like this!</p>";
}
break;
case "index.html":
type = "Root";
+
by = "<p>Where it all begins</p>";
break;
}