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

37 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" />
<link rel="alternate" type="application/rss+xml" href="{{ .Site.RSSLink }}" />
<meta name="superfish" content="nofish" />
<meta name="application-name" content="{{ .Site.Title }}" />
2018-08-15 21:27:56 +01:00
<link rel="icon" type="image/png" href='{{ (resources.Get "/img/logo-transparent.png" | fingerprint).RelPermalink }}'/>
2018-08-15 21:05:51 +01:00
{{ partial "style.html" "scss/style.scss" }}
2018-12-01 17:15:37 +00:00
{{ partial "style.html" "css/font-awesome.min.css" }}
2017-10-25 22:09:25 +01: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" . }}
2018-12-01 16:45:52 +00:00
{{ if not .Site.IsServer }}
{{ partial "matomo.html" . }}
{{ end }}
2017-11-11 22:00:53 +00:00
</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-08-15 21:05:51 +01:00
{{ partial "script.html" "js/jquery.min.js" }}
{{ partial "script_async.html" "js/lightgallery.js" }}
{{ partial "script_async.html" "js/bootstrap.min.js" }}
{{ partial "script_async.html" "js/mermaid.min.js" }}
{{ partial "script_async.html" "js/app.js" }}
2017-11-11 22:00:53 +00:00
</body>
2017-10-25 09:35:55 +01:00
</html>