diff --git a/src/content-env.d.ts b/src/content-env.d.ts index a11ffe8..33baccf 100644 --- a/src/content-env.d.ts +++ b/src/content-env.d.ts @@ -14,6 +14,7 @@ declare module 'content/routes.js' { id: string stylesheetUrls: string[] template: Template + title: string } /** diff --git a/src/views/markdown.vue b/src/views/markdown.vue index b7892c5..f992e3e 100644 --- a/src/views/markdown.vue +++ b/src/views/markdown.vue @@ -15,6 +15,7 @@ const routeConfig = routeStore._routes[currentRoute.path] as MarkdownDefinition onMounted(async () => { content.value = await fetchAndParseMarkdown(routeConfig.content) + document.title = routeConfig.title }) diff --git a/src/views/project-list.vue b/src/views/project-list.vue index f98e18d..10c66e4 100644 --- a/src/views/project-list.vue +++ b/src/views/project-list.vue @@ -24,6 +24,7 @@ onMounted(async () => { const id = projectIds.value[i] projects.value[id] = await fetchAndParseYaml(config.projects[id].config) } + document.title = routeConfig.title ready.value = true }) diff --git a/src/views/project-view.vue b/src/views/project-view.vue index 90daa05..cb1677c 100644 --- a/src/views/project-view.vue +++ b/src/views/project-view.vue @@ -1,5 +1,5 @@