mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2025-01-15 00:01:31 +01:00
49 lines
1.3 KiB
JavaScript
49 lines
1.3 KiB
JavaScript
// @flow strict
|
|
import React from 'react';
|
|
import { graphql } from 'gatsby';
|
|
import Layout from '../components/Layout';
|
|
import Sidebar from '../components/Sidebar';
|
|
import Page from '../components/Page';
|
|
import { useSiteMetadata } from '../hooks';
|
|
import type { MarkdownRemark } from '../types';
|
|
|
|
type Props = {
|
|
data: {
|
|
markdownRemark: MarkdownRemark
|
|
}
|
|
};
|
|
|
|
const PageTemplate = ({ data }: Props) => {
|
|
const { title: siteTitle, subtitle: siteSubtitle } = useSiteMetadata();
|
|
const { html: pageBody } = data.markdownRemark;
|
|
const { frontmatter } = data.markdownRemark;
|
|
const { title: pageTitle, description: pageDescription, socialImage } = frontmatter;
|
|
const metaDescription = pageDescription !== null ? pageDescription : siteSubtitle;
|
|
|
|
return (
|
|
<Layout title={`${pageTitle} - ${siteTitle}`} description={metaDescription} socialImage={socialImage} >
|
|
<Sidebar />
|
|
<Page title={pageTitle}>
|
|
<div dangerouslySetInnerHTML={{ __html: pageBody }} />
|
|
</Page>
|
|
</Layout>
|
|
);
|
|
};
|
|
|
|
export const query = graphql`
|
|
query PageBySlug($slug: String!) {
|
|
markdownRemark(fields: { slug: { eq: $slug } }) {
|
|
id
|
|
html
|
|
frontmatter {
|
|
title
|
|
date
|
|
description
|
|
socialImage
|
|
}
|
|
}
|
|
}
|
|
`;
|
|
|
|
export default PageTemplate;
|