Files
hugoDocs/layouts/_default/baseof.html
T
2017-03-01 01:15:23 -06:00

15 lines
415 B
HTML

<!DOCTYPE html>
<html lang="en">
{{- partial "site-head.html" . -}}
<body>
{{- partial "site-header.html" . -}}
{{- partial "site-search.html" . -}}
<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" . -}}
</body>
</html>