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 '../css/zenburn.css'; module.exports = React.createClass({ render: function() { var post, rhythm; rhythm = this.props.typography.rhythm; post = this.props.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

); } });