2025-12-04 22:15:12 +00:00
|
|
|
<script>
|
2026-01-21 15:21:21 +01:00
|
|
|
import Banner2 from "$lib/banner2.svelte";
|
2025-12-30 19:03:57 +00:00
|
|
|
import Content from "$lib/content.svelte";
|
2025-12-04 22:15:12 +00:00
|
|
|
import TableOfContents from "$lib/table-of-contents.svelte";
|
|
|
|
|
|
|
|
|
|
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}">
|
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}"
|
|
|
|
|
subtitle="Project N5 Devlog"
|
|
|
|
|
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>
|