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

45 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, maximum-scale=1, user-scalable=no, width=device-width" />
<meta name="superfish" content="nofish" />
<meta name="application-name" content="{{ .Site.Title }}" />
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" }}
2018-12-01 17:53:05 +00:00
{{ partial "style.html" "css/highlight.css" }}
2017-10-25 22:09:25 +01:00
{{ if eq .Params.layout "flickr" }}
{{ partial "style.html" "css/lightgallery.css" }}
{{ 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
2017-11-11 22:00:53 +00:00
{{ partial "footer.html" . }}
2018-12-01 20:43:35 +00:00
{{ partial "script.html" "js/jquery.js" }}
{{ if eq .Params.layout "flickr" }}
{{ partial "script_async.html" "js/lightgallery.js" }}
{{ end }}
2018-12-01 20:43:35 +00:00
{{ partial "script_async.html" "js/bootstrap.js" }}
{{ partial "script_async.html" "js/app.js" }}
{{ if not .Site.IsServer }}
<script async defer data-domain="theorangeone.net" src="https://plausible.theorangeone.net/js/plausible.js"></script>
{{ end }}
2017-11-11 22:00:53 +00:00
</body>
2017-10-25 09:35:55 +01:00
</html>