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/+layout.svelte | |
| 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/+layout.svelte')
| -rw-r--r-- | src/routes/+layout.svelte | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index 2fdfbc4d..6ab7eff8 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -5,6 +5,7 @@ import userIdentity from '../stores/userIdentity'; import settings from '../stores/settings'; import { browser } from '$app/environment'; + import HeadTitle from '$lib/HeadTitle.svelte'; export let data; @@ -33,6 +34,8 @@ }); </script> +<HeadTitle /> + <div id="container"> <div id="header"> <p id={$settings.displayHoverNavigation ? 'hover-header' : ''}> |