feat: more work done
This commit is contained in:
parent
8377892747
commit
ab60b4baf7
21 changed files with 160 additions and 21 deletions
|
|
@ -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 />
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue