renamed changelog to updates and moved link
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
@@ -1,17 +1,17 @@
|
||||
<script lang="ts">
|
||||
import Banner2 from "$lib/banner2.svelte";
|
||||
import Content from "$lib/viewport/content.svelte";
|
||||
import { entries } from "./changelog";
|
||||
import ChangelogEntry from "$lib/components/changelog-entry.svelte";
|
||||
import { entries } from "./updates";
|
||||
import ChangelogEntry from "$lib/components/update-entry.svelte";
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<title>Changelog | denizk0461</title>
|
||||
<title>Website Updates | denizk0461</title>
|
||||
</svelte:head>
|
||||
|
||||
<Content>
|
||||
<Banner2
|
||||
title="Website Changelog" />
|
||||
title="Website Updates" />
|
||||
|
||||
<div>
|
||||
{#each entries as entry}
|
||||
@@ -1,6 +1,6 @@
|
||||
import { type ChangelogEntry } from "$lib/components/changelog-entry.svelte";
|
||||
import { type UpdateEntry } from "$lib/components/update-entry.svelte";
|
||||
|
||||
export const entries: ChangelogEntry[] = [
|
||||
export const entries: UpdateEntry[] = [
|
||||
{
|
||||
date: "2026-02-06",
|
||||
time: "18:47",
|
||||
Reference in New Issue
Block a user