Compare commits

...

3 Commits

Author SHA1 Message Date
1c6231d47d /now now redirects to /meta/now 2026-04-14 12:27:57 +02:00
f504ba99bf added blog post 2026/0414 2026-04-14 12:26:55 +02:00
21ec4f8aed edited sidebar text blurb on main page 2026-04-14 10:51:42 +02:00
5 changed files with 36 additions and 2 deletions

View File

@@ -83,7 +83,7 @@
<Content>
<h1 class="gradient-title"><i>Moin!</i> ~ welcome to my website :)</h1>
<a href="/blog/2026/0325" class="page-subtitle gradient-title lightyears-text">you can change the world from your bedroom!</a>
<a href="/projects/misc/lightyears-font" class="page-subtitle gradient-title lightyears-text">you can change the world from your bedroom!</a>
<hr>
@@ -104,7 +104,7 @@
<div class="sidebox-container blurred-background">
<h4 class="sidebox-header">heads-up</h4>
<p>This website works best on Firefox and other Gecko-based browsers! It is also nearly 100% mobile-friendly! All pages are largely functional without JavaScript but I recommend you enable it (some elements won't work without it)! Links may change.</p>
<p>This website works best on Firefox and other Gecko-based browsers! It is also nearly 100% mobile-friendly! All pages are largely functional without JavaScript but I recommend you enable it (some elements won't work without it)! Links may also change.</p>
<hr>

View File

@@ -0,0 +1,15 @@
I've been working a lot on this website lately and I think I finally arrived at a state I'm happy to put online.
The [`/projects`](/projects) page has been updated! Instead of displaying all projects in a stream, they are now linked to their separate pages, which allows for much more detail and visual material on all of my individual projects. You'll find a gallery element on some pages to scroll through images and read blurbs about them! I also added filters for viewing specific project categories. Some project pages have already been updated with more content, but not all. I'll tackle this soon.
I also moved blog post `2026/0325` (the LIGHTYEARS font post) to a separate project page, which you can now find [here](/projects/misc/lightyears-font). This also means the deprecation of the short-lived `i-made-this` tag, as there's a better replacement:
I newly added the [`/feed`](/feed), which is a stream similarly to the old projects page, but it features smaller projects instead. It replaced the small projects page in purpose, though all of the small projects have found a home on [`/projects`](/projects). There's pagination so that your network connection won't be totally overloaded once the feed grows.
The drawing gallery has been deleted in favour of posting sketches on the [`/projects`](/projects) and [`/feed`](/feed) pages, depending on which fits better.
The updates page has also been removed in favour of a little status poster tool I'm working on. It's not quite ready but I'm already using it on the [main page](/) (under "latest status"). It'll be similar to [status.cafe](https://status.cafe) but self-hosted because of course I would do that.
I also added a [`/meta/now`](/meta/now) page as a [long-term update page](https://nownownow.com/about). As [`/now`](/now) is more standard, it also works and redirects to `/meta/now`. There's also [`/meta/music-gallery`](/meta/music-gallery), where I'll soon share and maintain my current music rotation.
On the topic of music: the my-tracks page currently still exists, but without content. It'll probably be relocated (maybe under [`/projects`](/projects)).

View File

@@ -41,6 +41,20 @@ export enum BlogPostTag {
export const posts: BlogPostLink[] = [
{
key: "2026/0414",
post: {
date: "2026-04-14",
time: "12:24",
banner: "banner.webp",
bannerAlt: "A street sign with the text 'THE OCEAN AT THE END OF THE LANE' and a logo of the city of Portsmouth in the United Kingdom.",
title: "website updates lately",
description: "new and exciting developments on natconf.dev",
tags: [
BlogPostTag.META,
],
}
},
{
key: "2026/0404",
post: {

5
src/routes/now/+page.ts Normal file
View File

@@ -0,0 +1,5 @@
import { redirect } from "@sveltejs/kit";
export function load() {
redirect(308, '/meta/now');
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 118 KiB