2024-08-20 19:17:05 +02:00
|
|
|
<script lang="ts">
|
2024-08-25 16:31:12 +02:00
|
|
|
const {
|
|
|
|
|
title,
|
|
|
|
|
favicon,
|
|
|
|
|
nestingLevel = 0
|
|
|
|
|
}: { title: string; favicon: string; nestingLevel?: number } = $props();
|
2024-08-20 19:17:05 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<svelte:head>
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
|
<title>{title}</title>
|
|
|
|
|
<link rel="stylesheet" href={`${"../".repeat(nestingLevel)}styles.css`} />
|
2024-08-25 16:31:12 +02:00
|
|
|
{#if favicon}
|
|
|
|
|
<link rel="icon" href={favicon} />
|
|
|
|
|
{/if}
|
2024-08-20 19:17:05 +02:00
|
|
|
</head>
|
|
|
|
|
</svelte:head>
|