Skip to content

Commit

Permalink
Tweak blog and post page titles
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsherman committed Nov 22, 2024
1 parent cbff969 commit 8199514
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/_includes/layouts/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default (data: LayoutData, _helpers: Lume.Helpers) => (
href="/posts.json"
title="JSON Feed"
/>
<title>{data.title}</title>
<title>mg5.dev - {data.title}</title>
</head>
<body>
<nav>
Expand Down
2 changes: 1 addition & 1 deletion src/_includes/layouts/post-layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default (data: PostLayoutData, _helpers: Lume.Helpers) => {
href="/posts.json"
title="JSON Feed"
/>
<title>{data.title}</title>
<title>mg5.dev - {data.title}</title>
</head>
<body>
<nav>
Expand Down
2 changes: 1 addition & 1 deletion src/blog/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const title = "mg5.dev - Blog";
export const title = "Blog";
export const layout = "layouts/layout.tsx";

export default (data: Lume.Data, _helpers: Lume.Helpers) => {
Expand Down

0 comments on commit 8199514

Please sign in to comment.