feat: more work done

This commit is contained in:
Alexander Daichendt 2022-07-26 08:30:47 +02:00
parent 8377892747
commit ab60b4baf7
21 changed files with 160 additions and 21 deletions

View file

@ -5,11 +5,21 @@
export { a };
</script>
<script lang="ts">
<script>
// @ts-nocheck
// svelte-ignore unused-export-let
export let title;
// svelte-ignore unused-export-let
export let description;
// svelte-ignore unused-export-let
export let date;
export let keywords;
</script>
<svelte:head>
<title>{title}</title>
<meta name="description" content={description} />
<meta name="keywords" content={keywords.join(', ')} />
</svelte:head>
<slot />