cupper-hugo-theme/layouts/_default/baseof.html

24 lines
659 B
HTML
Raw Normal View History

2017-11-02 16:39:45 +01:00
<!DOCTYPE html>
2019-02-13 06:11:59 +01:00
<html lang="{{ .Site.Language.Lang }}">
{{ partial "head.html" . }}
2017-11-02 16:39:45 +01:00
<body>
<a href="#main">{{ T "skip_to_content" }}</a>
{{ partial "noscript.html" . }}
2017-11-02 16:39:45 +01:00
{{ partial "svg.html" . }}
2019-02-08 22:49:18 +01:00
<div class="wrapper">
2019-02-13 06:11:59 +01:00
{{ partial "header.html" . }}
2017-11-02 16:39:45 +01:00
<div class="main-and-footer">
<div>
2019-02-13 06:11:59 +01:00
{{ block "main" . }}{{ end }}
2021-01-13 22:08:57 +01:00
{{ if ne .Site.Params.moveFooterToHeader true }}
{{ partial "footer.html" . }}
{{ end }}
2017-11-02 16:39:45 +01:00
</div>
</div>
</div>
2019-02-13 06:11:59 +01:00
{{ partial "script.html" . }}
2019-04-03 03:59:56 +02:00
{{ partial "katex.html" . }}
2019-02-13 06:52:29 +01:00
{{ partial "google-analytics-async.html" . }}
2017-11-02 16:39:45 +01:00
</body>
</html>