camp-homepage/gallery/themes/autophugo/layouts/_default/baseof.html
2023-02-05 13:58:44 +01:00

23 lines
498 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>
{{- partial "footer.html" . }}
</div>
{{- partial "scripts.html" . }}
</body>
</html>