-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathhtml.js
63 lines (57 loc) · 1.74 KB
/
html.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import React from 'react'
import Helmet from 'react-helmet'
import { prefixLink } from 'gatsby-helpers'
const googleId = 'UA-71097907-1'
export default class extends React.Component {
static propTypes = {
title: React.PropTypes.string,
favicon: React.PropTypes.string,
body: React.PropTypes.string,
}
render() {
const head = Helmet.rewind()
let cssLink
if (process.env.NODE_ENV === 'production') {
cssLink = <link rel="stylesheet" href={prefixLink('/styles.css')} />
}
return (
<html lang="en" className="is-loading">
<head>
<meta charSet="utf-8" />
<meta httpEquiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0 maximum-scale=1.0"
/>
<meta name="theme-color" content="#f3df49" />
{head.title.toComponent()}
{head.meta.toComponent()}
{head.link.toComponent()}
<link rel="shortcut icon" href={this.props.favicon} />
{cssLink}
</head>
<body>
<div
id="react-mount"
dangerouslySetInnerHTML={{ __html: this.props.body }}
/>
<script
async
src={`https://www.googletagmanager.com/gtag/js?id=${googleId}`}
/>
<script
dangerouslySetInnerHTML={{
__html: `
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', '${googleId}');
`.trim(),
}}
/>
<script src={prefixLink('/bundle.js')} />
</body>
</html>
)
}
}