File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ const { frontmatter } = Astro.props;
6
6
7
7
<base target =" _blank" />
8
8
9
- <Layout >
9
+ <Layout pageTitle = { ` UmYeah's Blog - ${ frontmatter . title } ` } >
10
10
<h2 >{ frontmatter .title } </h2 >
11
11
<strong >{ frontmatter .description } </strong >
12
12
<p style =" font-size: 16px;" >Published on: { frontmatter .pubDate .toLocaleDateString ()} </p >
Original file line number Diff line number Diff line change 2
2
import Layout from ' ../layouts/Layout.astro' ;
3
3
---
4
4
5
- <Layout >
5
+ <Layout pageTitle = " UmYeah's 404 " >
6
6
<section >
7
7
<h3 >Page Not Found</h3 >
8
8
</section >
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ const { tag } = Astro.params;
21
21
const { posts} = Astro .props ;
22
22
23
23
---
24
- <Layout pageTitle ={ tag } >
24
+ <Layout pageTitle ={ ` UmYeah's Tags - ${ tag } ` } >
25
25
<h4 >Posts tagged with { tag } ({ posts .length } )</h4 >
26
26
{ posts .map ((post : any ) => <Blogpost url = { ` /posts/${post .id }/ ` } title = { post .data .title } />)}
27
27
</Layout >
You can’t perform that action at this time.
0 commit comments