diff options
| author | Fuwn <[email protected]> | 2023-12-28 17:16:18 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-12-28 17:16:18 -0800 |
| commit | 5eb99837aed4b265b7d834947e4480d7be010b85 (patch) | |
| tree | f59cd923f4cccfa43f8ec42d4f2690b175d3c2bf /src | |
| parent | fix(wrapped): size by width (diff) | |
| download | due.moe-5eb99837aed4b265b7d834947e4480d7be010b85.tar.xz due.moe-5eb99837aed4b265b7d834947e4480d7be010b85.zip | |
feat(html): update description and title
Diffstat (limited to 'src')
| -rw-r--r-- | src/app.html | 6 | ||||
| -rw-r--r-- | src/lib/HeadTitle.svelte | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/app.html b/src/app.html index 173149f7..ee6e2987 100644 --- a/src/app.html +++ b/src/app.html @@ -7,7 +7,7 @@ <meta name="theme-color" content="#060506" /> <meta name="description" - content="Instantly view which anime & manga on your lists have new episodes/chapters!" + content="Instantly view which anime & manga on your lists have new episodes/chapters! Combining utility and simplicity, due.moe is the best way to keep track of your anime & manga." /> <!-- Facebook --> @@ -17,7 +17,7 @@ <meta property="og:site_name" content="due.moe • 期限" /> <meta property="og:description" - content="Instantly view which anime & manga on your lists have new episodes/chapters!" + content="Instantly view which anime & manga on your lists have new episodes/chapters! Combining utility and simplicity, due.moe is the best way to keep track of your anime & manga." /> <meta property="og:image" content="https://due.moe/favicon-196x196.png" /> @@ -28,7 +28,7 @@ <meta name="twitter:title" content="due.moe • 期限" /> <meta name="twitter:description" - content="Instantly view which anime & manga on your lists have new episodes/chapters!" + content="Instantly view which anime & manga on your lists have new episodes/chapters! Combining utility and simplicity, due.moe is the best way to keep track of your anime & manga." /> <meta name="twitter:image" content="https://due.moe/favicon-196x196.png" /> diff --git a/src/lib/HeadTitle.svelte b/src/lib/HeadTitle.svelte index 892eef48..1b759705 100644 --- a/src/lib/HeadTitle.svelte +++ b/src/lib/HeadTitle.svelte @@ -2,7 +2,7 @@ export let route: string | undefined = undefined; export let path: string | undefined = undefined; - const title = 'due.moe • 期限' + (route ? ` | ${route}` : ''); + const title = 'due.moe' + (route ? ` • ${route}` : ''); </script> <svelte:head> |