2017-10-25 09:35:55 +01:00
|
|
|
<!DOCTYPE HTML>
|
2018-01-24 18:58:57 +00:00
|
|
|
<html lang="en" dir="ltr">
|
2017-11-11 22:00:53 +00:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<meta http-equiv="Content-Language" content="{{ .Site.Language.Lang }}" />
|
2021-12-26 22:38:16 +00:00
|
|
|
<meta name="viewport" content="initial-scale=1, width=device-width" />
|
2017-11-11 22:00:53 +00:00
|
|
|
<meta name="superfish" content="nofish" />
|
|
|
|
<meta name="application-name" content="{{ .Site.Title }}" />
|
2021-07-16 20:52:51 +01:00
|
|
|
<meta name="theme-color" content="#E85537" />
|
|
|
|
|
2019-10-13 18:02:41 +01:00
|
|
|
{{ partial "favicon.html" }}
|
2018-08-15 21:05:51 +01:00
|
|
|
|
2022-04-15 21:44:16 +01:00
|
|
|
<!-- Intentionally early, to prevent the rest of the page rendering -->
|
|
|
|
{{ partial "script_async.html" "js/ie11-deterrent.js" }}
|
|
|
|
|
2018-08-15 21:05:51 +01:00
|
|
|
{{ partial "style.html" "scss/style.scss" }}
|
2018-12-16 14:51:54 +00:00
|
|
|
{{ partial "style.html" "css/font-awesome.css" }}
|
2017-10-25 22:09:25 +01:00
|
|
|
|
2021-12-27 10:32:50 +00:00
|
|
|
{{ block "style_extra" . }}{{ end }}
|
2018-12-16 14:30:46 +00:00
|
|
|
|
2018-08-19 11:35:54 +01:00
|
|
|
<title>{{ partial "title-item.html" . }}{{ .Site.Title }}</title>
|
2017-11-11 21:53:54 +00:00
|
|
|
|
2017-11-11 22:00:53 +00:00
|
|
|
{{ partial "metadata.html" . }}
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{{ partial "navbar.html" . }}
|
2017-10-25 09:35:55 +01:00
|
|
|
|
2017-11-11 22:00:53 +00:00
|
|
|
{{ block "main" . }}{{ end }}
|
2017-10-25 09:35:55 +01:00
|
|
|
|
2020-11-13 22:26:30 +00:00
|
|
|
{{ if not .IsHome }}
|
2021-09-04 16:37:23 +01:00
|
|
|
{{ partial "support-pill.html" . }}
|
2020-11-13 22:26:30 +00:00
|
|
|
{{ end }}
|
|
|
|
|
2017-11-11 22:00:53 +00:00
|
|
|
{{ partial "footer.html" . }}
|
2018-03-11 19:38:52 +00:00
|
|
|
|
2021-02-13 15:19:06 +00:00
|
|
|
{{ partial "script.html" "js/jquery.min.js" }}
|
2018-12-16 14:30:46 +00:00
|
|
|
|
2021-02-13 15:19:06 +00:00
|
|
|
{{ partial "script_async.html" "js/bootstrap.min.js" }}
|
2018-12-16 14:30:46 +00:00
|
|
|
|
2018-12-01 17:03:46 +00:00
|
|
|
{{ partial "script_async.html" "js/app.js" }}
|
2020-07-21 16:52:52 +01:00
|
|
|
|
2021-07-03 10:30:48 +01:00
|
|
|
{{ block "scripts_extra" . }}{{ end }}
|
|
|
|
|
2020-07-23 18:41:49 +01:00
|
|
|
{{ if not .Site.IsServer }}
|
2020-11-25 11:42:36 +00:00
|
|
|
<script async defer data-domain="theorangeone.net" src="https://elbisualp.theorangeone.net/js/index.js"></script>
|
2020-07-23 18:41:49 +01:00
|
|
|
{{ end }}
|
2017-11-11 22:00:53 +00:00
|
|
|
</body>
|
2017-10-25 09:35:55 +01:00
|
|
|
</html>
|