mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2025-07-27 04:32:32 +02:00
Fix format
This commit is contained in:
@@ -7,7 +7,7 @@ class CategoryTemplate extends React.Component {
|
||||
render() {
|
||||
const title = this.props.data.site.siteMetadata.title;
|
||||
const category = this.props.pathContext.category;
|
||||
const posts = this.props.data.allMarkdownRemark.edges
|
||||
const posts = this.props.data.allMarkdownRemark.edges;
|
||||
|
||||
return (
|
||||
<div>
|
||||
|
@@ -12,7 +12,7 @@ class TagTemplate extends React.Component {
|
||||
<div>
|
||||
<Helmet title={`All Posts tagged as "${tag}" - ${title}`} />
|
||||
<Sidebar siteMetadata={this.props.data.site.siteMetadata} />
|
||||
<TagTemplateDetails posts={this.props.data.allMarkdownRemark.edges} tag={tag}/>
|
||||
<TagTemplateDetails posts={this.props.data.allMarkdownRemark.edges} tag={tag} />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
Reference in New Issue
Block a user