Browse Source

Fix html title of posts

restructure
Garrit Franke 3 years ago
parent
commit
8140b47aac
  1. 2
      pages/posts/[post].js

2
pages/posts/[post].js

@ -18,7 +18,7 @@ export default function BlogTemplate(props) {
if (!props.frontmatter) return <></>;
return (
<Layout siteTitle={props.siteTitle}>
<Layout siteTitle={props.frontmatter.title}>
<article className="blog">
<div className="blog__info">
<h1>{props.frontmatter.title}</h1>

Loading…
Cancel
Save