1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
| <script lang="ts"> const url = import.meta.env.VITE_APP_URL; const title = ''; const description = ''; </script>
<svelte:head> <title>{title}</title> <meta name="description" content={description} /> <meta name="keywords" content="svelte" /> <meta name="author" content="Memo Chou" /> <meta name="robots" content="index, follow" /> <meta name="og:title" content={title} /> <meta name="og:description" content={description} /> <meta name="og:type" content="website" /> <meta name="og:url" content={url} /> <meta name="og:image" content="{url}/cover.png" /> <meta name="twitter:title" content={title} /> <meta name="twitter:description" content={description} /> <meta name="twitter:image" content="{url}/cover.png" /> <meta name="twitter:card" content="summary_large_image" /> </svelte:head>
<div class="app"> <main> <slot /> </main> </div>
|