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

Configure Feed

Select the types of activity you want to include in your feed.

chore: make the by field funny quips

+8 -1
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
··· 81 81 case "blog": 82 82 type = "Blog"; 83 83 if (file.split("/")[1] !== "index.html") { 84 - by = "<p>By Kieran Klukas</p>"; 84 + by = "<p>A post ... yeah thats about it</p>"; 85 85 } else { 86 86 by = "<p>All authored by Kieran Klukas</p>"; 87 87 } 88 88 break; 89 89 case "verify": 90 + type = "Slash Page"; 91 + by = "<p>So you can stalk me 💀</p>"; 92 + break; 90 93 case "pfp": 91 94 type = "Slash Page"; 95 + by = "<p>Want to stare at my pretty face?</p>"; 92 96 break; 93 97 case "tags": 94 98 if (file.split("/")[1] === "index.html") { 95 99 type = "Tags"; 100 + by = "<p>A total archive!</p>"; 96 101 } else { 97 102 type = "Tag"; 103 + by = "<p>Find more posts like this!</p>"; 98 104 } 99 105 break; 100 106 case "index.html": 101 107 type = "Root"; 108 + by = "<p>Where it all begins</p>"; 102 109 break; 103 110 } 104 111