camp-homepage/gallery/themes/autophugo/layouts/_default/baseof.html
Christoph Schindlbeck ba025cc848 remove default footer
2023-02-05 14:16:19 +01:00

22 lines
459 B
HTML

<!DOCTYPE HTML>
{{- partial "lang.html" . }}
<head>
<title>
{{- block "title" . }}
{{- with .Title }}{{ . }} - {{ end }}{{ .Site.Title -}}
{{- end -}}
</title>
{{- partial "head.html" . }}
</head>
<body class="loading">
<div id="wrapper">
{{- partial "header.html" . }}
<div id="main">
{{ block "main" . }}
{{ end }}
</div>
</div>
{{- partial "scripts.html" . }}
</body>
</html>