rickvanlieshout.com/components/SitePage/index.jsx

40 lines
1.1 KiB
React
Raw Normal View History

2016-03-11 23:28:19 +01:00
import React from 'react'
import moment from 'moment'
import { RouteHandler, Link } from 'react-router'
2016-06-03 01:32:38 +02:00
import { prefixLink } from 'gatsby-helpers'
2016-03-11 23:28:19 +01:00
import access from 'safe-access'
import { config } from 'config'
2016-06-03 13:05:50 +02:00
import SiteSidebar from '../SiteSidebar'
2016-06-03 01:32:38 +02:00
import './style.css';
2016-03-11 23:28:19 +01:00
2016-06-03 13:05:50 +02:00
class SitePage extends React.Component {
2016-03-21 18:03:01 +01:00
render() {
const {route} = this.props
const post = route.page.data
2016-03-11 23:28:19 +01:00
2016-03-21 18:03:01 +01:00
return (
<div>
2016-06-03 13:05:50 +02:00
<SiteSidebar {...this.props}/>
2016-03-21 18:03:01 +01:00
<div className='content'>
<div className='main'>
<div className='main-inner'>
<div className='blog-page'>
<div className='text'>
<h1>{ post.title }</h1>
<div dangerouslySetInnerHTML={ { __html: post.body} } />
</div>
</div>
2016-03-11 23:28:19 +01:00
</div>
</div>
</div>
</div>
2016-03-21 18:03:01 +01:00
);
}
2016-03-11 23:28:19 +01:00
}
2016-06-03 13:05:50 +02:00
SitePage.propTypes = {
route: React.PropTypes.object.isRequired,
2016-03-11 23:28:19 +01:00
}
export default SitePage