mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2025-03-14 11:28:56 +01:00
49 lines
1.2 KiB
JavaScript
49 lines
1.2 KiB
JavaScript
// @flow strict
|
|
import React from 'react';
|
|
import { graphql } from 'gatsby';
|
|
import Layout from '../components/Layout';
|
|
import Post from '../components/Post';
|
|
import { useSiteMetadata } from '../hooks';
|
|
import type { MarkdownRemark } from '../types';
|
|
|
|
type Props = {
|
|
data: {
|
|
markdownRemark: MarkdownRemark
|
|
}
|
|
};
|
|
|
|
const PostTemplate = ({ data }: Props) => {
|
|
const { title: siteTitle, subtitle: siteSubtitle } = useSiteMetadata();
|
|
const frontmatter = data.markdownRemark.frontmatter;
|
|
const { title: postTitle, description: postDescription, socialImage } = frontmatter;
|
|
const metaDescription = postDescription !== null ? postDescription : siteSubtitle;
|
|
|
|
return (
|
|
<Layout title={`${postTitle} - ${siteTitle}`} description={metaDescription} socialImage={socialImage} >
|
|
<Post post={data.markdownRemark} />
|
|
</Layout>
|
|
);
|
|
};
|
|
|
|
export const query = graphql`
|
|
query PostBySlug($slug: String!) {
|
|
markdownRemark(fields: { slug: { eq: $slug } }) {
|
|
id
|
|
html
|
|
fields {
|
|
slug
|
|
tagSlugs
|
|
}
|
|
frontmatter {
|
|
date
|
|
description
|
|
tags
|
|
title
|
|
socialImage
|
|
}
|
|
}
|
|
}
|
|
`;
|
|
|
|
export default PostTemplate;
|