diff options
| author | Fuwn <[email protected]> | 2023-12-28 20:53:46 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-12-28 20:53:46 -0800 |
| commit | 059e4561f6c58c096d2e0495aa3673557eb7cac8 (patch) | |
| tree | a23fc6ad01412a7b852ef80404be7a16a75e4002 | |
| parent | refactor(hovercover): move skip to module (diff) | |
| download | due.moe-059e4561f6c58c096d2e0495aa3673557eb7cac8.tar.xz due.moe-059e4561f6c58c096d2e0495aa3673557eb7cac8.zip | |
feat(html): reorder title
| -rw-r--r-- | src/app.html | 8 | ||||
| -rw-r--r-- | src/lib/HeadTitle.svelte | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/app.html b/src/app.html index 6c1fae5c..55214f6f 100644 --- a/src/app.html +++ b/src/app.html @@ -13,8 +13,8 @@ <!-- Facebook --> <meta property="og:url" content="https://due.moe" /> <meta property="og:type" content="website" /> - <meta property="og:title" content="due.moe • 期限" /> - <meta property="og:site_name" content="due.moe • 期限" /> + <meta property="og:title" content="due.moe" /> + <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! Combining utility and simplicity, due.moe is the best way to keep track of your anime & manga." @@ -25,14 +25,14 @@ <meta name="twitter:card" content="summary_large_image" /> <meta property="twitter:domain" content="due.moe" /> <meta property="twitter:url" content="https://due.moe" /> - <meta name="twitter:title" content="due.moe • 期限" /> + <meta name="twitter:title" content="due.moe" /> <meta name="twitter:description" 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" /> - <title>due.moe • 期限</title> + <title>due.moe</title> <!-- Web Application Manifest --> <link rel="manifest" href="%sveltekit.assets%/manifest.json" /> diff --git a/src/lib/HeadTitle.svelte b/src/lib/HeadTitle.svelte index 1b759705..39d6b4ef 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 = (route ? `${route} • ` : '') + 'due.moe'; </script> <svelte:head> |