dot-hugo/layouts/_default/baseof.html

12 lines
254 B
HTML
Raw Normal View History

2019-01-06 10:40:05 +00:00
<!DOCTYPE html>
<html>
{{- partial "head.html" . -}}
<body>
{{- partial "navigation.html" . -}}
<div id="content">
{{- block "main" . }}{{- end }}
</div>
{{- partial "footer.html" . -}}
</body>
</html>