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 }