move head.html to header.html and header.html to head.html

This commit is contained in:
Rico Ullmann 2023-01-06 21:59:04 +01:00
parent f74bf2e917
commit 1e25137388
Signed by: rullmann
GPG Key ID: AE1066B5BD0B5041
2 changed files with 6 additions and 6 deletions

View File

@ -1,9 +1,9 @@
<!DOCTYPE html>
<html>
{{- partial "header.html" . -}}
{{- partial "head.html" . -}}
<body>
<div class="content">
{{- partial "head.html" . -}}
{{- partial "header.html" . -}}
{{- block "main" . }}{{- end }}
{{- partial "footer.html" . -}}
</div>

View File

@ -1,10 +1,10 @@
<!DOCTYPE html>
<html>
{{ partial "header.html" . }}
{{ partial "head.html" . }}
<body>
<div class="content">
{{ partial "head.html" . }}
{{ partial "header.html" . }}
<main class="list">
<div class="site-description">
{{- if isset .Site.Params "subtitle" -}}
@ -25,6 +25,6 @@
</main>
{{ partial "footer.html" . }}
</div>
</body>
</html>