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">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, maximum-scale=1.0, 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}}
|
|
|
|
<link rel="stylesheet" href="css/bootstrap.min.css">
|
|
|
|
<link rel="stylesheet" href="css/base.css">
|
|
|
|
<link rel="stylesheet" href="font/all.css">
|
|
|
|
{{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>
|
|
|
|
|
|
|
|
<div id="app"></div>
|
|
|
|
|
|
|
|
{{if USE_CDN}}
|
|
|
|
|
|
|
|
{{else}}
|
|
|
|
<% _.each(htmlWebpackPlugin.tags.bodyTags, function(bodyTag) { %>
|
|
|
|
<%= bodyTag %> <% }) %>
|
|
|
|
{{end}}
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
{{end}}
|