2020-05-05 18:26:44 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
2020-05-31 02:09:52 +02:00
|
|
|
<title>{{ .config.SiteTitle }}</title>
|
2020-05-05 18:26:44 +02:00
|
|
|
|
|
|
|
<link rel="shortcut icon" href="/favicon.ico">
|
2020-06-26 16:11:56 +02:00
|
|
|
<link rel="apple-touch-icon" href="/static/img/favicon.png">
|
|
|
|
<link rel="icon" type="image/png" href="/static/img/favicon.png"/>
|
2020-05-05 18:26:44 +02:00
|
|
|
|
2020-05-27 19:38:40 +02:00
|
|
|
<link rel="stylesheet" href="/static/build/app.css?{{ .config.CSSHash }}">
|
2020-05-05 18:26:44 +02:00
|
|
|
<link rel="manifest" href="/static/manifest.json">
|
|
|
|
|
|
|
|
<script>
|
2020-05-23 20:58:58 +02:00
|
|
|
window.__CONFIG__ = {{ .config }};
|
2020-05-05 18:26:44 +02:00
|
|
|
</script>
|
|
|
|
</head>
|
2020-05-27 19:38:40 +02:00
|
|
|
<body class="{{ .config.Flags }}">
|
2020-05-05 18:26:44 +02:00
|
|
|
<!--[if lt IE 8]>
|
|
|
|
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade
|
|
|
|
your browser</a> to improve your experience.</p>
|
|
|
|
<![endif]-->
|
|
|
|
|
2020-07-09 15:01:36 +02:00
|
|
|
{{template "app.tmpl" .}}
|
2020-05-05 18:26:44 +02:00
|
|
|
|
2020-05-27 19:38:40 +02:00
|
|
|
<script src="/static/build/app.js?{{ .config.JSHash }}"></script>
|
2020-05-05 18:26:44 +02:00
|
|
|
</body>
|
|
|
|
</html>
|