2020-02-19 04:07:22 +00:00
|
|
|
{{ define "base" }}
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2020-02-19 08:13:09 +00:00
|
|
|
<title>{{CoreApp.Name}}</title>
|
2020-02-19 04:07:22 +00:00
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
2020-03-05 05:38:56 +00:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0">
|
2020-02-19 08:13:09 +00:00
|
|
|
<meta name="description" content="{{CoreApp.Description}}">
|
2020-02-19 04:07:22 +00:00
|
|
|
<base href="{{BasePath}}">
|
|
|
|
{{if USE_CDN}}
|
|
|
|
<link rel="shortcut icon" type="image/x-icon" href="https://assets.statping.com/favicon.ico">
|
2020-02-20 05:28:39 +00:00
|
|
|
<link rel="stylesheet" href="https://assets.statping.com/css/bootstrap.min.css">
|
|
|
|
<link rel="stylesheet" href="https://assets.statping.com/css/base.css">
|
|
|
|
<link rel="stylesheet" href="https://assets.statping.com/font/all.css">
|
2020-02-19 04:07:22 +00:00
|
|
|
{{else}}
|
|
|
|
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
|
2020-02-20 05:28:39 +00:00
|
|
|
{{if USING_ASSETS}}
|
2020-02-21 19:38:21 +00:00
|
|
|
<link href="css/vendor.css" rel="stylesheet">
|
|
|
|
<link href="css/style.css" rel="stylesheet">
|
2020-03-12 04:58:56 +00:00
|
|
|
<link href="css/base.css" rel="stylesheet">
|
2020-02-20 05:28:39 +00:00
|
|
|
{{else}}
|
2020-02-19 04:07:22 +00:00
|
|
|
<% _.each(htmlWebpackPlugin.tags.headTags, function(headTag) { %>
|
|
|
|
<%= headTag %> <% }) %>
|
|
|
|
{{end}}
|
2020-02-20 05:28:39 +00:00
|
|
|
{{end}}
|
2020-02-19 04:07:22 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<noscript>
|
|
|
|
<strong>We're sorry but Statping doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
|
|
|
|
</noscript>
|
|
|
|
|
2020-03-07 10:59:25 +00:00
|
|
|
<div id="app" class="statping_container"></div>
|
2020-02-19 04:07:22 +00:00
|
|
|
|
|
|
|
{{if USE_CDN}}
|
2020-02-21 19:38:21 +00:00
|
|
|
<script src="https://assets.statping.com/js/bundle.js"></script>
|
|
|
|
<script src="https://assets.statping.com/js/vendor.chunk.js"></script>
|
|
|
|
<script src="https://assets.statping.com/js/polyfill.chunk.js"></script>
|
|
|
|
<script src="https://assets.statping.com/js/style.chunk.js"></script>
|
|
|
|
<script src="https://assets.statping.com/js/main.chunk.js"></script>
|
2020-02-19 04:07:22 +00:00
|
|
|
{{else}}
|
|
|
|
<% _.each(htmlWebpackPlugin.tags.bodyTags, function(bodyTag) { %>
|
|
|
|
<%= bodyTag %> <% }) %>
|
|
|
|
{{end}}
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
{{end}}
|