mirror of
https://github.com/gohugoio/hugo.git
synced 2026-08-25 07:48:52 +00:00
19 lines
509 B
HTML
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> |