1
Fork 0
theorangeone.net-legacy/layouts/_default/baseof.html

46 lines
1.3 KiB
HTML
Raw Normal View History

2017-10-25 09:35:55 +01:00
<!DOCTYPE HTML>
<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 }}" />
<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
{{ partial "style.html" "scss/style.scss" }}
{{ partial "style.html" "css/font-awesome.css" }}
2017-10-25 22:09:25 +01:00
{{ block "style_extra" . }}{{ end }}
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
{{ if not .IsHome }}
{{ partial "support-pill.html" . }}
{{ end }}
2017-11-11 22:00:53 +00:00
{{ partial "footer.html" . }}
2021-02-13 15:19:06 +00:00
{{ partial "script.html" "js/jquery.min.js" }}
2021-02-13 15:19:06 +00:00
{{ partial "script_async.html" "js/bootstrap.min.js" }}
{{ partial "script_async.html" "js/app.js" }}
2021-07-03 10:30:48 +01:00
{{ block "scripts_extra" . }}{{ end }}
{{ 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>
{{ end }}
2017-11-11 22:00:53 +00:00
</body>
2017-10-25 09:35:55 +01:00
</html>