import React from 'react' import moment from 'moment' import DocumentTitle from 'react-document-title' import { link } from 'gatsby-helpers' import ReadNext from '../components/ReadNext' import { rhythm } from 'utils/typography' import { config } from 'config' import '../css/zenburn.css' module.exports = React.createClass({ propTypes () { return { route: React.PropTypes.object, } }, render () { const post = this.props.route.page.data return (

{post.title}

Posted {moment(post.date).format('MMMM D, YYYY')}

{this.props.config.authorName} lives and works in San Francisco building useful things. You should follow him on Twitter

) }, })