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>
|
2025-12-12 17:40:27 +00:00
|
|
|
<meta charset="UTF-8" />
|
|
|
|
|
<meta name="robots" content="noindex" />
|
|
|
|
|
<meta name="viewport" content="width=768" id="viewport-meta-tag" />
|
2023-01-06 14:57:32 +00:00
|
|
|
|
|
|
|
|
<script>
|
2025-12-12 17:40:27 +00:00
|
|
|
// If URL contains /device/, set mobile-friendly viewport
|
|
|
|
|
if (window.location.pathname.includes("/device/")) {
|
|
|
|
|
document
|
|
|
|
|
.getElementById("viewport-meta-tag")
|
|
|
|
|
.setAttribute("content", "width=device-width, initial-scale=1.0");
|
|
|
|
|
}
|
2023-01-06 14:57:32 +00:00
|
|
|
</script>
|
2022-08-01 10:27:12 +00:00
|
|
|
|
|
|
|
|
<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
|
|
|
|
2024-01-12 14:27:56 +00:00
|
|
|
<title>Fleet</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] %>"
|
|
|
|
|
></script>
|
2016-08-10 05:15:44 +00:00
|
|
|
</body>
|
|
|
|
|
</html>
|