More work with titles & descriptions

This commit is contained in:
vjrj 2018-02-07 15:27:12 +01:00
parent a1138c8c43
commit 464af6b9d1
21 changed files with 178 additions and 51 deletions

View file

@ -7,6 +7,7 @@ import PropTypes from 'prop-types';
import { translate } from 'react-i18next';
import { withTracker } from 'meteor/react-meteor-data';
import Blaze from 'meteor/gadicc:blaze-react-component';
import { Helmet } from 'react-helmet';
/*
https://github.com/meteor/docs/blob/version-NEXT/long-form/oplog-observe-driver.md
@ -26,6 +27,9 @@ class Status extends Component {
render() {
return (
<Fragment>
<Helmet>
<title>{this.t('AppName')}: Status</title>
</Helmet>
<h4 className="page-header">Status</h4>
<Blaze template="serverFacts" />
</Fragment>