2025-12-04 22:15:12 +00:00
|
|
|
<script>
|
2026-01-21 15:21:21 +01:00
|
|
|
import Banner2 from "$lib/banner2.svelte";
|
2026-01-23 14:19:20 +01:00
|
|
|
import Content from "$lib/viewport/content.svelte";
|
2026-02-15 13:36:29 +01:00
|
|
|
import TableOfContents from "$lib/components/table-of-contents.svelte";
|
2025-12-04 22:15:12 +00:00
|
|
|
|
|
|
|
|
export let data;
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<svelte:head>
|
|
|
|
|
<title>{data.title} | denizk0461</title>
|
2025-12-21 17:35:21 +00:00
|
|
|
<meta name="description" content="{data.description}">
|
2026-02-02 19:19:09 +01:00
|
|
|
<meta name="DCTERMS.created" content="{data.date}">
|
2025-12-04 22:15:12 +00:00
|
|
|
</svelte:head>
|
|
|
|
|
|
2026-04-26 22:13:15 +02:00
|
|
|
<Content bannerContent={{
|
|
|
|
|
title: data.title,
|
|
|
|
|
subtitle: "Homesick Devlog",
|
|
|
|
|
date: data.date,
|
|
|
|
|
banner: "preview.webp",
|
|
|
|
|
bannerAlt: data.bannerAlt,
|
|
|
|
|
}}>
|
2025-12-04 22:15:12 +00:00
|
|
|
|
2026-04-26 22:13:15 +02:00
|
|
|
<!-- <TableOfContents /> -->
|
2025-12-04 22:15:12 +00:00
|
|
|
|
2025-12-30 19:03:57 +00:00
|
|
|
<svelte:component this={data.content} />
|
2025-12-04 22:15:12 +00:00
|
|
|
|
2025-12-30 19:03:57 +00:00
|
|
|
</Content>
|