2019-02-25 22:11:11 +03:00
|
|
|
import React from 'react'
|
|
|
|
import PropTypes from 'prop-types'
|
|
|
|
|
|
|
|
export default function HTML(props) {
|
|
|
|
return (
|
|
|
|
<html {...props.htmlAttributes}>
|
|
|
|
<head>
|
|
|
|
<meta charSet="utf-8" />
|
|
|
|
<meta httpEquiv="x-ua-compatible" content="ie=edge" />
|
|
|
|
<meta
|
|
|
|
name="viewport"
|
|
|
|
content="width=device-width, initial-scale=1, shrink-to-fit=no"
|
|
|
|
/>
|
|
|
|
<link
|
|
|
|
rel="stylesheet"
|
|
|
|
href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css"
|
|
|
|
/>
|
2019-02-25 23:41:51 +03:00
|
|
|
{props.headComponents}
|
2019-02-25 22:11:11 +03:00
|
|
|
</head>
|
2019-03-15 16:48:26 +03:00
|
|
|
<body id="_top" {...props.bodyAttributes}>
|
2019-02-25 22:11:11 +03:00
|
|
|
{props.preBodyComponents}
|
|
|
|
<noscript key="noscript" id="gatsby-noscript">
|
|
|
|
This app works best with JavaScript enabled.
|
|
|
|
</noscript>
|
|
|
|
<div key={`body`} id="___gatsby" dangerouslySetInnerHTML={{ __html: props.body }} />
|
|
|
|
{props.postBodyComponents}
|
|
|
|
</body>
|
|
|
|
<script
|
|
|
|
type="text/javascript"
|
|
|
|
src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"
|
|
|
|
/>
|
|
|
|
</html>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
HTML.propTypes = {
|
|
|
|
htmlAttributes: PropTypes.object,
|
|
|
|
headComponents: PropTypes.array,
|
|
|
|
bodyAttributes: PropTypes.object,
|
|
|
|
preBodyComponents: PropTypes.array,
|
|
|
|
body: PropTypes.string,
|
|
|
|
postBodyComponents: PropTypes.array,
|
|
|
|
}
|