website/layouts/_default/baseof.html

14 lines
305 B
HTML
Raw Normal View History

2020-08-24 01:48:03 -05:00
<!DOCTYPE html>
<html>
{{- partial "head.html" . -}}
<body>
<div id="content">
{{- partial "header.html" . -}}
<main>
{{- block "main" . }}{{- end }}
</main>
{{- partial "footer.html" . -}}
</div>
</body>
</html>