diff --git a/src/routes/(main)/+page.svelte b/src/routes/(main)/+page.svelte index bc7b43a..4705d06 100644 --- a/src/routes/(main)/+page.svelte +++ b/src/routes/(main)/+page.svelte @@ -35,25 +35,32 @@ - -

this site is perpetually under construction but coming along :)

+ +

This site is perpetually under construction but coming along :)

-

it's mostly a reminder of past work and a place for me to post recipes I like, with the occasional technical post or personal blog mixed in.

+

It's mostly a place for me to post recipes I like, with the occasional technical post or personal blog mixed in. Some work-related stuff can be found here too, but that's not what I want to talk about.

-

thanks for stopping by, check out the links that work

+

Thanks for stopping by, check out the links that work ✌️

- + + +

🎶 - Stove God Cooks, Nujabes, Fleetwood Mac

+

🍿 - The Righteous Gemstones, Saltburn

+

📚 - Thinking, Fast And Slow by Daniel Kahneman

+

🎮 - Baldur's Gate 3, Monster Train, RDR2

+ +

Last updated: Jan 12, 2024

+
+ + +

In no particular order...

+ +
- - diff --git a/src/routes/(main)/blog/+page.svelte b/src/routes/(main)/blog/+page.svelte index 498472e..aeebb2e 100644 --- a/src/routes/(main)/blog/+page.svelte +++ b/src/routes/(main)/blog/+page.svelte @@ -38,7 +38,6 @@ }; let recipes = false; - let snippets = false; let technical = false; let notes = false; @@ -50,7 +49,6 @@ if (!Array.isArray(givenstate.show)) givenstate.show = [givenstate.show]; if (!givenstate.show.includes('Recipes')) recipes = false; if (!givenstate.show.includes('Technical')) technical = false; - if (!givenstate.show.includes('Snippets')) snippets = false; if (!givenstate.show.includes('Notes')) notes = false; if (givenstate.filter) filterStr = givenstate.filter; urlState = { ...defaultURLState, ...givenstate }; @@ -63,7 +61,6 @@ filter: filterStr, show: [ recipes && 'Recipes', - snippets && 'Snippets', technical && 'Technical', notes && 'Notes' ].filter(Boolean) @@ -99,10 +96,9 @@ if (filterStr && notIncludes(filterStr, x)) { return false; } else { - if ([recipes, technical, snippets, notes].every((v) => v === false)) return true; + if ([recipes, technical, notes].every((v) => v === false)) return true; if (recipes && x.category === 'recipe') return true; if (technical && x.category === 'technical') return true; - if (snippets && x.category === 'snippet') return true; if (notes && x.category === 'note') return true; } }); @@ -168,17 +164,6 @@ > Recipes -