mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2025-04-05 06:44:27 +02:00
67 lines
1.4 KiB
JavaScript
67 lines
1.4 KiB
JavaScript
import React from 'react';
|
|
import Helmet from 'react-helmet';
|
|
import Sidebar from '../components/Sidebar';
|
|
import TagTemplateDetails from '../components/TagTemplateDetails';
|
|
|
|
class TagTemplate extends React.Component {
|
|
render() {
|
|
const { title } = this.props.data.site.siteMetadata;
|
|
const { tag } = this.props.pathContext;
|
|
|
|
return (
|
|
<div>
|
|
<Helmet title={`All Posts tagget as "${tag}" - ${title}`} />
|
|
<Sidebar {...this.props} />
|
|
<TagTemplateDetails {...this.props} />
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default TagTemplate;
|
|
|
|
export const pageQuery = graphql`
|
|
query TagPage($tag: String) {
|
|
site {
|
|
siteMetadata {
|
|
title
|
|
subtitle
|
|
copyright
|
|
menu {
|
|
label
|
|
path
|
|
}
|
|
author {
|
|
name
|
|
email
|
|
telegram
|
|
twitter
|
|
github
|
|
rss
|
|
vk
|
|
}
|
|
}
|
|
}
|
|
allMarkdownRemark(
|
|
limit: 1000,
|
|
filter: { frontmatter: { tags: { in: [$tag] }, layout: { eq: "post" }, draft: { ne: true } } },
|
|
sort: { order: DESC, fields: [frontmatter___date] }
|
|
){
|
|
edges {
|
|
node {
|
|
fields {
|
|
slug
|
|
categorySlug
|
|
}
|
|
frontmatter {
|
|
title
|
|
date
|
|
category
|
|
description
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
`;
|