diff options
| author | Fuwn <[email protected]> | 2023-12-25 00:46:05 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-12-25 00:46:05 -0800 |
| commit | 486c01a572f50c6db925ca74600ba5d4984752df (patch) | |
| tree | 96fac5e1aa3f221e141a74ada0864044bc70c5ac /src/routes/completed | |
| parent | feat(html): update title (diff) | |
| download | due.moe-486c01a572f50c6db925ca74600ba5d4984752df.tar.xz due.moe-486c01a572f50c6db925ca74600ba5d4984752df.zip | |
feat(routes): route-specific head title
Diffstat (limited to 'src/routes/completed')
| -rw-r--r-- | src/routes/completed/+page.svelte | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/routes/completed/+page.svelte b/src/routes/completed/+page.svelte index 466f993c..8e3e21e6 100644 --- a/src/routes/completed/+page.svelte +++ b/src/routes/completed/+page.svelte @@ -7,6 +7,7 @@ import { lastActivityDate } from '$lib/AniList/activity'; import ListTitle from '$lib/List/ListTitle.svelte'; import MangaListTemplate from '$lib/List/Manga/MangaListTemplate.svelte'; + import HeadTitle from '$lib/HeadTitle.svelte'; export let data; @@ -68,6 +69,8 @@ }; </script> +<HeadTitle route="Completed" path="/completed" /> + {#if !lastActivityWasToday} <p> You don't have any new activity statuses from the past day! Create one within {timeLeftToday()} |