mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
1b23b7b74f
Changes include style fixes that were caught during a QA pass.
22 lines
826 B
Plaintext
22 lines
826 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" type="text/css" href="{{.URLPrefix}}<%= htmlWebpackPlugin.files.css[0] %>">
|
|
<link rel="shortcut icon" href="{{.URLPrefix}}/assets/favicon.ico">
|
|
|
|
<title>Fleet for osquery</title>
|
|
<script type="text/javascript">
|
|
var urlPrefix = "{{.URLPrefix}}";
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script async defer src="{{.URLPrefix}}<%= htmlWebpackPlugin.files.js[0] %>" onload="this.parentElement.removeChild(this)"></script>
|
|
<!-- Because iOS hates interactive stuff, we have to kill it with fire -->
|
|
<script>document.addEventListener("touchstart", function() {},false);</script>
|
|
<!-- End Apple Hate -->
|
|
</body>
|
|
</html>
|