renamed changelog to updates and moved link

This commit is contained in:
2026-02-16 18:19:46 +01:00
parent f5c8aba740
commit 669a5f95d0
5 changed files with 34 additions and 33 deletions

View File

@@ -5,13 +5,13 @@
import { posts as devlogPosts } from "./projects/projectn5/devlog/posts";
import { posts as blogPosts } from "./blog/posts";
import { entries as changelogEntries } from "./changelog/changelog";
import ChangelogEntry from "$lib/components/changelog-entry.svelte";
import { entries as updateEntries } from "./meta/updates/updates";
import UpdateEntry from "$lib/components/update-entry.svelte";
let latestDevlogDate = devlogPosts[0].post.date;
let latestBlogDate = blogPosts[0].post.date;
let changelogEntriesTrimmed = changelogEntries.slice(0, 3);
let updateEntriesTrimmed = updateEntries.slice(0, 3);
const galleryTopRow: GalleryRowEntry[] = [
{
@@ -72,10 +72,10 @@
<p>This place is a constant work-in-progress while I try to keep URLs intact, a lot of stuff is being modified and moved around! I'm also adding new things and seeing which things I enjoy maintaining. If anything's outright <a href="/blog/2026/0131">broken</a>, please do let me know.</p>
</div>
<div class="changelog-container">
<a class="changelog-header-link" href="/changelog"><h6 class="changelog-header">website changelog <span class="small-supertext">(new!)</span></h6></a>
{#each changelogEntriesTrimmed as entry}
<ChangelogEntry {entry} />
<div class="update-container">
<a class="update-header-link" href="/meta/updates"><h6 class="update-header">website updates <span class="small-supertext">(new!)</span></h6></a>
{#each updateEntriesTrimmed as entry}
<UpdateEntry {entry} />
{/each}
</div>
@@ -116,20 +116,20 @@
margin-right: 12px;
}
.changelog-container {
.update-container {
padding: 8px 24px;
border: var(--border-dash-size) var(--color-highlight) dashed;
backdrop-filter: blur(var(--blur-radius-background));
}
.changelog-header-link {
.update-header-link {
text-decoration: none;
}
.changelog-header-link:hover {
.update-header-link:hover {
text-decoration: underline dashed var(--border-dash-size) var(--color-highlight);
}
.changelog-header {
.update-header {
margin-top: 8px;
}