cosin-website/layouts/_default/baseof.html

36 lines
1.2 KiB
HTML
Raw Normal View History

2018-04-23 04:18:37 +02:00
<!DOCTYPE html>
2018-04-30 04:01:47 +02:00
<html lang='{{ .Site.Language.Lang }}'>
2018-04-23 04:18:37 +02:00
<head>
<meta charset="utf-8">
<title>{{ .Site.Title }} | {{ .Page.Title }}</title>
2018-04-23 04:18:37 +02:00
<!-- Include our own css last -->
{{ $options := dict "targetPath" "custom.css" "outputStyle" "compressed" }}
2024-07-26 00:38:44 +02:00
{{ $style := resources.Get "/sass/custom.css" | css.Sass $options | resources.Fingerprint }}
<link rel="stylesheet" href="{{ $style.Permalink }}" integrity="{{ $style.Data.Integrity }}"/>
2024-06-16 19:06:33 +02:00
{{ partial "opengraph.html" .}}
2018-04-23 04:18:37 +02:00
</head>
<body>
{{ block "header" . }} {{ partial "site-header.html" . }} {{ end }}
{{ block "menu" . }} {{ partial "site-menu.html" . }} {{ end }}
<div id="content">
2018-04-30 04:01:47 +02:00
{{ if eq .Site.Language.Lang "de" }}
{{ partial "site-sidebar.de.html" . }}
{{ else if eq .Site.Language.Lang "fr" }}
{{ partial "site-sidebar.fr.html" . }}
{{ else if eq .Site.Language.Lang "it" }}
{{ partial "site-sidebar.it.html" . }}
{{ else if eq .Site.Language.Lang "en" }}
{{ partial "site-sidebar.en.html" . }}
2018-04-23 20:46:27 +02:00
{{ end }}
2018-04-23 04:18:37 +02:00
{{ block "main" . }} {{ end }}
2018-09-01 17:17:51 +02:00
<div id="clear"></div>
2018-04-23 04:18:37 +02:00
</div>
{{ block "footer" . }} {{ partial "site-footer.html" . }} {{ end }}
</body>
</html>