76 lines
1.7 KiB
HTML
76 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>//inject-title//</title>
|
|
<meta name="theme-color" content="#FFF" />
|
|
<meta name="slack-app-id" content="//inject-slack-app-id//" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="color-scheme" content="light dark" />
|
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
<meta name="description" content="//inject-description//" />
|
|
<link
|
|
rel="canonical"
|
|
href="//inject-canonical//"
|
|
data-react-helmet="true"
|
|
/>
|
|
//inject-prefetch//
|
|
<link
|
|
rel="shortcut icon"
|
|
type="image/png"
|
|
href="/images/favicon-32.png"
|
|
sizes="32x32"
|
|
/>
|
|
<link
|
|
rel="apple-touch-icon"
|
|
type="image/png"
|
|
href="/images/apple-touch-icon.png"
|
|
sizes="192x192"
|
|
/>
|
|
<link
|
|
rel="search"
|
|
type="application/opensearchdescription+xml"
|
|
href="/opensearch.xml"
|
|
title="Outline"
|
|
/>
|
|
<style>
|
|
body,
|
|
html {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
#root {
|
|
flex: 1;
|
|
min-height: 100%;
|
|
width: 100%;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="root"></div>
|
|
<script>
|
|
//inject-env//
|
|
</script>
|
|
<script>
|
|
if (
|
|
window.localStorage &&
|
|
window.localStorage.getItem("theme") === "dark"
|
|
) {
|
|
var color = "#111319";
|
|
document.querySelector("#root").style.background = color;
|
|
document
|
|
.querySelector('meta[name="theme-color"]')
|
|
.setAttribute("content", color);
|
|
}
|
|
</script>
|
|
//inject-script-tags//
|
|
</body>
|
|
</html>
|