1
0
Fork 0

page template

This commit is contained in:
Matthias Kretschmann 2018-09-16 15:08:52 +02:00
parent 782f597db8
commit e77b33d6a6
Signed by: m
GPG Key ID: 606EEEF3C479A91F
8 changed files with 45 additions and 27 deletions

View File

@ -1,20 +1,21 @@
import React from 'react'
import PropTypes from 'prop-types'
import { Link } from 'gatsby'
import Layout from '../components/Layout'
import Page from '../templates/Page'
import styles from './404.module.scss'
const NotFound = ({ location }) => (
<Layout location={location}>
const NotFound = () => (
<Page title="404 - Not Found">
<div className={styles.hal9000} />
<div className={styles.wrapper}>
<h1 className={styles.title}>I am sorry Dave,</h1>
<p className={styles.text}>I am afraid I can not do that.</p>
{/* eslint-disable-next-line quotes */}
<h1 className={styles.title}>{"I'm sorry Dave"}</h1>{' '}
{/* eslint-disable-next-line quotes */}
<p className={styles.text}>{"I'm afraid I can't do that"}</p>
<Link to={'/'}>Back to homepage</Link>
</div>
</Layout>
</Page>
)
NotFound.propTypes = {

View File

@ -2,6 +2,7 @@
.wrapper {
text-align: center;
margin-bottom: $spacer * 4;
}
.title {

View File

@ -1,12 +1,12 @@
import React from 'react'
import PropTypes from 'prop-types'
import { graphql, Link } from 'gatsby'
import Layout from '../components/Layout'
import Image from '../components/atoms/Image'
import Page from '../templates/Page'
import styles from './goodies.module.scss'
const Goodies = ({ data, location }) => {
const Goodies = ({ data }) => {
const edges = data.goodies.edges
const GoodiesThumbs = edges.map(({ node }) => {
@ -28,10 +28,9 @@ const Goodies = ({ data, location }) => {
})
return (
<Layout location={location}>
<h1 className={styles.pageTitle}>Goodies</h1>
<Page title="Goodies">
<section className={styles.goodies}>{GoodiesThumbs}</section>
</Layout>
</Page>
)
}

View File

@ -15,11 +15,6 @@
}
}
.pageTitle {
composes: archiveTitle from '../templates/Posts.module.scss';
margin-bottom: $spacer * 2;
}
.title {
font-size: $font-size-h3;
color: $brand-grey;

View File

@ -1,12 +1,12 @@
import React from 'react'
import PropTypes from 'prop-types'
import { graphql, Link } from 'gatsby'
import Layout from '../components/Layout'
import Image from '../components/atoms/Image'
import Page from '../templates/Page'
import styles from './photos.module.scss'
const Photos = ({ data, location }) => {
const Photos = ({ data }) => {
const edges = data.photos.edges
const PhotoThumbs = edges.map(({ node }) => {
@ -25,10 +25,9 @@ const Photos = ({ data, location }) => {
})
return (
<Layout location={location}>
<h1 className={styles.pageTitle}>Photos</h1>
<Page title="Photos">
<section className={styles.photos}>{PhotoThumbs}</section>
</Layout>
</Page>
)
}

View File

@ -17,8 +17,3 @@
display: block;
}
}
.pageTitle {
composes: archiveTitle from '../templates/Posts.module.scss';
margin-bottom: $spacer * 2;
}

22
src/templates/Page.jsx Normal file
View File

@ -0,0 +1,22 @@
import React from 'react'
import PropTypes from 'prop-types'
import Layout from '../components/Layout'
import styles from './Page.module.scss'
const Page = ({ title, location, children }) => {
return (
<Layout location={location}>
<h1 className={styles.pageTitle}>{title}</h1>
{children}
</Layout>
)
}
Page.propTypes = {
location: PropTypes.object,
children: PropTypes.any.isRequired,
title: PropTypes.string.isRequired
}
export default Page

View File

@ -0,0 +1,6 @@
@import 'variables';
.pageTitle {
composes: archiveTitle from '../templates/Posts.module.scss';
margin-bottom: $spacer * 2;
}