Files
hugo/layouts/_default/baseof.html
T
2017-03-09 18:06:29 -06:00

19 lines
509 B
HTML

<!DOCTYPE html>
<html lang="en">
{{- partial "site-head.html" . -}}
<body>
{{ block "header" . }}
{{- partial "site-header.html" . -}}
{{- partial "site-search.html" . -}}
{{ end }}
<div class="all-content-wrapper{{if .IsHome}} home{{end}}" id="all-content-wrapper">
{{ block "main" . }}
{{ end}}
</div>
{{- partial "site-footer.html" . -}}
{{- partial "site-navigation.html" . -}}
{{- partial "site-scripts.html" . -}}
{{ block "addscripts" . }}
{{ end }}
</body>
</html>