i18next.com
Version:
i18next website
20 lines (17 loc) • 512 B
JSX
import React from 'react';
import DocumentTitle from 'react-document-title';
module.exports = React.createClass({
render: function() {
var post, rhythm;
rhythm = this.props.typography.rhythm;
post = this.props.page.data;
return (
<DocumentTitle title={`${post.title} | ${this.props.config.siteTitle}`}>
<div className="markdown">
<h1>{post.title}</h1>
<div dangerouslySetInnerHTML={{__html: post.body}}/>
</div>
</DocumentTitle>
);
}
});