2016-08-10 05:15:44 +00:00
|
|
|
<!DOCTYPE html>
|
2019-10-16 23:40:45 +00:00
|
|
|
<html>
|
2016-08-10 05:15:44 +00:00
|
|
|
<head>
|
2022-08-01 10:27:12 +00:00
|
|
|
<!-- isProduction comes from build time webpack config -->
|
|
|
|
|
<% if (isProduction) { %>
|
|
|
|
|
<!-- ServerType comes from runtime server -->
|
|
|
|
|
{{ if (eq .ServerType "sandbox") }}
|
|
|
|
|
<!-- these scripts are to add google analytics on production sandbox instances -->
|
|
|
|
|
<script
|
|
|
|
|
async
|
|
|
|
|
type="text/javascript"
|
|
|
|
|
src="https://www.googletagmanager.com/gtag/js?id=G-JC3DRNY1GV"
|
|
|
|
|
></script>
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
window.dataLayer = window.dataLayer || [];
|
|
|
|
|
function gtag() {
|
|
|
|
|
dataLayer.push(arguments);
|
|
|
|
|
}
|
|
|
|
|
gtag("js", new Date());
|
|
|
|
|
gtag("config", "G-JC3DRNY1GV");
|
|
|
|
|
</script>
|
|
|
|
|
{{
|
|
|
|
|
end
|
|
|
|
|
}}
|
|
|
|
|
<% } %>
|
2021-05-28 18:41:24 +00:00
|
|
|
|
2022-08-01 10:27:12 +00:00
|
|
|
<meta charset="UTF-8" />
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
2021-05-28 18:41:24 +00:00
|
|
|
|
2022-08-01 10:27:12 +00:00
|
|
|
<meta name="robots" content="noindex" />
|
|
|
|
|
|
|
|
|
|
<link
|
|
|
|
|
rel="stylesheet"
|
|
|
|
|
type="text/css"
|
|
|
|
|
href="{{.URLPrefix}}<%= htmlWebpackPlugin.files.css[0] %>"
|
|
|
|
|
/>
|
|
|
|
|
<link rel="shortcut icon" href="{{.URLPrefix}}/assets/favicon.ico" />
|
2017-01-06 17:28:34 +00:00
|
|
|
|
2020-11-05 04:48:01 +00:00
|
|
|
<title>Fleet for osquery</title>
|
2019-10-16 23:40:45 +00:00
|
|
|
<script type="text/javascript">
|
2022-08-01 10:27:12 +00:00
|
|
|
var urlPrefix = "{{.URLPrefix}}";
|
2019-10-16 23:40:45 +00:00
|
|
|
</script>
|
2016-08-10 05:15:44 +00:00
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<div id="app"></div>
|
2022-08-01 10:27:12 +00:00
|
|
|
<script
|
|
|
|
|
async
|
|
|
|
|
defer
|
|
|
|
|
src="{{.URLPrefix}}<%= htmlWebpackPlugin.files.js[0] %>"
|
|
|
|
|
onload="this.parentElement.removeChild(this)"
|
|
|
|
|
></script>
|
2016-11-18 15:41:52 +00:00
|
|
|
<!-- Because iOS hates interactive stuff, we have to kill it with fire -->
|
2022-08-01 10:27:12 +00:00
|
|
|
<script>
|
|
|
|
|
document.addEventListener("touchstart", function () {}, false);
|
|
|
|
|
</script>
|
2016-11-18 15:41:52 +00:00
|
|
|
<!-- End Apple Hate -->
|
2016-08-10 05:15:44 +00:00
|
|
|
</body>
|
|
|
|
|
</html>
|