From d6d112e1b44f45e3486afaf70aaacb0f438ed697 Mon Sep 17 00:00:00 2001 From: Ayc0 Date: Wed, 20 Aug 2025 01:31:42 +0200 Subject: [PATCH] set mt0 on tags --- src/components/starlight/PageTitle.astro | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/components/starlight/PageTitle.astro b/src/components/starlight/PageTitle.astro index b1e1aec..602f94f 100644 --- a/src/components/starlight/PageTitle.astro +++ b/src/components/starlight/PageTitle.astro @@ -20,11 +20,17 @@ const tags = getTagsHtml(Astro.locals.starlightRoute.entry); // Only display the reading time & last updated when it is a doc Astro.locals.starlightRoute.entry.data.template === "doc" ? ( <> - {tags ?
: null} -

+

{remarkPluginFrontmatter.readingTime.displayedText} {createdDate ? ` • ${createdDate}` : ""}

+ {tags ? ( +
+ ) : null} ) : null } -- 2.51.2