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-01-21 15:21:21 +01:00
|
|
|
<Content>
|
2025-12-04 22:15:12 +00:00
|
|
|
|
2026-01-21 15:21:21 +01:00
|
|
|
<Banner2
|
|
|
|
|
title="{data.title}"
|
2026-03-11 18:57:19 +01:00
|
|
|
subtitle="Homesick Devlog"
|
2026-01-21 15:21:21 +01:00
|
|
|
date="{data.date}"
|
|
|
|
|
banner="preview.webp"
|
|
|
|
|
bannerAlt="{data.bannerAlt}"
|
|
|
|
|
/>
|
2025-12-04 22:15:12 +00:00
|
|
|
|
2026-01-21 17:42:59 +01: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>
|