2026-01-05 12:35:16 +00:00
|
|
|
<script>
|
2026-01-21 17:49:02 +01:00
|
|
|
import Banner2 from "$lib/banner2.svelte";
|
2026-01-23 14:19:20 +01:00
|
|
|
import Content from "$lib/viewport/content.svelte";
|
2026-01-05 12:35:16 +00:00
|
|
|
import TableOfContents from "$lib/table-of-contents.svelte";
|
|
|
|
|
|
|
|
|
|
export let data;
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<svelte:head>
|
|
|
|
|
<title>{data.title} | denizk0461</title>
|
|
|
|
|
<meta name="description" content="{data.description}">
|
|
|
|
|
</svelte:head>
|
|
|
|
|
|
2026-01-21 17:49:02 +01:00
|
|
|
<Content>
|
|
|
|
|
<Banner2
|
|
|
|
|
title="{data.title}"
|
|
|
|
|
date="{data.date}"
|
|
|
|
|
banner="preview.webp"
|
|
|
|
|
bannerAlt="{""/*data.bannerAlt*/}" />
|
2026-01-05 12:35:16 +00:00
|
|
|
|
2026-01-21 17:49:02 +01:00
|
|
|
<TableOfContents />
|
2026-01-05 12:35:16 +00:00
|
|
|
|
|
|
|
|
<svelte:component this={data.content} />
|
|
|
|
|
|
|
|
|
|
</Content>
|