fixed taxonomy layout

This commit is contained in:
James Tombleson 2022-10-18 22:11:53 -07:00
parent 28e16b3990
commit a14b6f0a18
1 changed files with 22 additions and 13 deletions

View File

@ -1,16 +1,25 @@
{{ partial "header.html" . }}
{{ partial "hero.html" . }}
<!DOCTYPE html>
<html lang="{{ .Page.Language | default " en" }}">
<div class="container">
<br>
<head>
{{ partial "header.html"}}
{{ partial "header.meta.html" .}}
{{ partial "script.menu.html"}}
<title>{{ .Title }}</title>
</head>
<div class="buttons">
{{ range .Data.Pages }}
<button class="button">
<a href="{{.RelPermalink}}">{{ .Title }}</a>
</button>
{{ end }}
<body>
{{ partial "navbar" . }}
{{ partial "hero.html" . }}
<div class="container">
<br>
<div class="buttons">
{{ range .Data.Pages }}
<button class="button">
<a href="{{.RelPermalink}}">{{ .Title }}</a>
</button>
{{ end }}
</div>
</div>
</div>
{{ partial "footer.html" . }}
</body>