summaryrefslogtreecommitdiff
path: root/src/pages
diff options
context:
space:
mode:
authorJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2023-08-27 18:26:45 +0100
committerJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2023-08-27 18:29:47 +0100
commit35c242f6abb614e1d545fb8a2a1180a451c22a54 (patch)
tree12b905e8f8f489a4415ee37cdab4b55042f979ff /src/pages
parent85675451bcdeaf57d0887305f23731c5837a95a1 (diff)
Scotsoun release title includes ID
Diffstat (limited to 'src/pages')
-rw-r--r--src/pages/[locale]/furthsettins/scotsoun/[scotsounId]/index.astro4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pages/[locale]/furthsettins/scotsoun/[scotsounId]/index.astro b/src/pages/[locale]/furthsettins/scotsoun/[scotsounId]/index.astro
index a641561..90053fe 100644
--- a/src/pages/[locale]/furthsettins/scotsoun/[scotsounId]/index.astro
+++ b/src/pages/[locale]/furthsettins/scotsoun/[scotsounId]/index.astro
@@ -1,7 +1,7 @@
---
import Page from '$layouts/Page.astro';
import localeStaticPaths from '$lib/localeStaticPaths';
-import tPage from '$i18n/translations/pages/scotsounGallery';
+import tPage from '$i18n/translations/pages/scotsounRelease';
import translate from '$i18n/translate';
import type Locale from '$types/Locale';
import { getScotsoun } from '$data/scotsoun';
@@ -22,6 +22,6 @@ const t = translate(locale);
const scotsoun = await getScotsoun[scotsounId]();
---
-<Page title={t(tPage, { key: 'title' })}>
+<Page title={t(tPage, { key: 'title', scotsounId, name: scotsoun.title })}>
<Scotsoun scotsoun={scotsoun} />
</Page>