Skip to content

Commit 62433b6

Browse files
committed
feat: blog post article title
1 parent 443142a commit 62433b6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/layouts/BlogPost.astro

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,10 @@ type Props = {
1818
1919
const props = Astro.props;
2020
const { title, description, pubDate, updatedDate, cover } = props.data;
21+
const titlePrefixed = `FireIsBlog - ${title}`;
2122
---
2223

23-
<Layout suffix="Blog" {title} {description} image={cover?.src ?? SITE_EMBED_IMAGE}>
24+
<Layout suffix="Blog" title={titlePrefixed} {description} image={cover?.src ?? SITE_EMBED_IMAGE}>
2425
<ArticleStructuredData slot="structured-data" {...props.data} />
2526
<Breadcrumb />
2627
<article>

0 commit comments

Comments
 (0)