diff --git a/src/app.html b/src/app.html index ae3c041..c0cb17d 100644 --- a/src/app.html +++ b/src/app.html @@ -9,6 +9,11 @@ href="https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet"> + + + + + %sveltekit.head% diff --git a/src/lib/components/PostCard.svelte b/src/lib/components/PostCard.svelte index b24a662..dce6420 100644 --- a/src/lib/components/PostCard.svelte +++ b/src/lib/components/PostCard.svelte @@ -13,7 +13,7 @@
{#if image} -
+
{title} - Blog + jawhng.xyz - blog
-

Blog Posts

+

Always off-topic

{#each data.posts as post} diff --git a/src/routes/posts/how-this-site-was-made.md b/src/routes/posts/how-this-site-was-made.md index b03be34..c8fa33a 100644 --- a/src/routes/posts/how-this-site-was-made.md +++ b/src/routes/posts/how-this-site-was-made.md @@ -2,6 +2,7 @@ title: "How It's Made - The Blog" date: "2025-12-22" excerpt: "A cynic walks you through building a blog with SvelteKit, particles.js that doesn't work, and enough utility classes to make you start questioning your choices." +image: "/images/posts/jawhng.png" --- **Everybody's dying.** Some people are just doing it faster than others by choosing the wrong JavaScript framework. diff --git a/static/android-chrome-192x192.png b/static/android-chrome-192x192.png new file mode 100644 index 0000000..9d8a621 Binary files /dev/null and b/static/android-chrome-192x192.png differ diff --git a/static/android-chrome-512x512.png b/static/android-chrome-512x512.png new file mode 100644 index 0000000..907a291 Binary files /dev/null and b/static/android-chrome-512x512.png differ diff --git a/static/apple-touch-icon.png b/static/apple-touch-icon.png new file mode 100644 index 0000000..554f322 Binary files /dev/null and b/static/apple-touch-icon.png differ diff --git a/static/favicon-16x16.png b/static/favicon-16x16.png new file mode 100644 index 0000000..d200c74 Binary files /dev/null and b/static/favicon-16x16.png differ diff --git a/static/favicon-32x32.png b/static/favicon-32x32.png new file mode 100644 index 0000000..1be4bd4 Binary files /dev/null and b/static/favicon-32x32.png differ diff --git a/static/favicon.ico b/static/favicon.ico new file mode 100644 index 0000000..cdb9a9a Binary files /dev/null and b/static/favicon.ico differ diff --git a/static/images/posts/jawhng.png b/static/images/posts/jawhng.png new file mode 100644 index 0000000..49fa9f7 Binary files /dev/null and b/static/images/posts/jawhng.png differ diff --git a/static/site.webmanifest b/static/site.webmanifest new file mode 100644 index 0000000..0535166 --- /dev/null +++ b/static/site.webmanifest @@ -0,0 +1,19 @@ +{ + "name": "jawhng.xyz", + "short_name": "jawhng", + "icons": [ + { + "src": "/android-chrome-192x192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "/android-chrome-512x512.png", + "sizes": "512x512", + "type": "image/png" + } + ], + "theme_color": "#ffffff", + "background_color": "#ffffff", + "display": "standalone" +} \ No newline at end of file