Fix eslint errors
This commit is contained in:
parent
f856fe0060
commit
d0552c19b2
10 changed files with 179 additions and 139 deletions
70
html.jsx
70
html.jsx
|
|
@ -1,15 +1,20 @@
|
|||
import React from 'react';
|
||||
import Typography from 'typography';
|
||||
import DocumentTitle from 'react-document-title';
|
||||
import React from 'react'
|
||||
import DocumentTitle from 'react-document-title'
|
||||
import { link } from 'gatsby-helpers'
|
||||
import { TypographyStyle } from 'utils/typography'
|
||||
|
||||
export default class Html extends React.Component {
|
||||
render() {
|
||||
let title;
|
||||
title = DocumentTitle.rewind();
|
||||
propTypes () {
|
||||
return {
|
||||
body: React.PropTypes.string,
|
||||
favicon: React.PropTypes.string,
|
||||
title: React.PropTypes.string,
|
||||
}
|
||||
}
|
||||
render () {
|
||||
let title = DocumentTitle.rewind()
|
||||
if (this.props.title) {
|
||||
title = this.props.title;
|
||||
title = this.props.title
|
||||
}
|
||||
|
||||
return (
|
||||
|
|
@ -17,34 +22,41 @@ export default class Html extends React.Component {
|
|||
<head>
|
||||
<meta charSet="utf-8"/>
|
||||
<meta httpEquiv="X-UA-Compatible" content="IE=edge"/>
|
||||
<meta name='viewport' content='user-scalable=no width=device-width, initial-scale=1.0 maximum-scale=1.0'/>
|
||||
<meta
|
||||
name="viewport"
|
||||
content="user-scalable=no width=device-width, initial-scale=1.0 maximum-scale=1.0"
|
||||
/>
|
||||
<title>{this.props.title}</title>
|
||||
<link rel="shortcut icon" href={this.props.favicon}/>
|
||||
<TypographyStyle/>
|
||||
<style dangerouslySetInnerHTML={{__html:
|
||||
`
|
||||
body {
|
||||
color: rgb(66,66,66);
|
||||
}
|
||||
h1,h2,h3,h4,h5,h6 {
|
||||
color: rgb(44,44,44);
|
||||
}
|
||||
a {
|
||||
color: rgb(42,93,173);
|
||||
text-decoration: none;
|
||||
}
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
`
|
||||
}}/>
|
||||
<style
|
||||
dangerouslySetInnerHTML={{
|
||||
__html:
|
||||
`
|
||||
body {
|
||||
color: rgb(66,66,66);
|
||||
}
|
||||
h1,h2,h3,h4,h5,h6 {
|
||||
color: rgb(44,44,44);
|
||||
}
|
||||
a {
|
||||
color: rgb(42,93,173);
|
||||
text-decoration: none;
|
||||
}
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
`,
|
||||
}}
|
||||
/>
|
||||
</head>
|
||||
<body className="landing-page">
|
||||
<div id="react-mount" dangerouslySetInnerHTML={{__html: this.props.body}} />
|
||||
<script src={link("/bundle.js")}/>
|
||||
<div id="react-mount" dangerouslySetInnerHTML={{ __html: this.props.body }} />
|
||||
<script src={link('/bundle.js')}/>
|
||||
</body>
|
||||
</html>
|
||||
);
|
||||
)
|
||||
}
|
||||
}
|
||||
Html.defaultProps = { body: "" };
|
||||
|
||||
Html.defaultProps = { body: '' }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue