hugo-tufte/layouts/_default/baseof.html

16 lines
251 B
HTML
Raw Normal View History

2021-07-21 20:23:55 +02:00
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}">
{{- partial "header.html" . -}}
2021-07-21 20:23:55 +02:00
<body >
{{ block "main" . }}{{ end }}
2021-07-21 20:23:55 +02:00
<!-- Load Katex, if necessary. -->
{{ if or .Params.math .IsHome }}
{{ partial "math.html" . }}
{{ end }}
</body>
</html>