-
Notifications
You must be signed in to change notification settings - Fork 17
/
html.js
54 lines (51 loc) · 1.53 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
import React from 'react';
import PropTypes from 'prop-types';
const HTML = ({
htmlAttributes,
headComponents,
preBodyComponents,
body,
postBodyComponents,
bodyAttributes,
}) => (
<html prefix="og: https://ogp.me/ns#" lang="en" {...htmlAttributes}>
<head>
<meta charSet="utf-8" />
<meta httpEquiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
{headComponents}
<script
dangerouslySetInnerHTML={{
__html: `
// load fonts
WebFontConfig = {
google: {
families: ['Khula:300,800', 'Lato']
},
};
(function(d) {
var wf = d.createElement('script'), s = d.scripts[0];
wf.src = 'https://cdnjs.cloudflare.com/ajax/libs/webfont/1.6.28/webfontloader.js';
wf.async = true;
s.parentNode.insertBefore(wf, s);
})(document);
`,
}}
/>
</head>
<body {...bodyAttributes}>
{preBodyComponents}
<div key="body" id="___gatsby" dangerouslySetInnerHTML={{ __html: body }} />
{postBodyComponents}
</body>
</html>
);
HTML.propTypes = {
htmlAttributes: PropTypes.shape({}),
headComponents: PropTypes.any,
bodyAttributes: PropTypes.shape({}),
preBodyComponents: PropTypes.arrayOf(PropTypes.object),
body: PropTypes.string,
postBodyComponents: PropTypes.arrayOf(PropTypes.object),
};
export default HTML;