cookbook/themes/hugo-bulma-cookbook/layouts/taxonomy/terms.html

25 lines
571 B
HTML
Raw Normal View History

2022-10-18 22:11:53 -07:00
<!DOCTYPE html>
<html lang="{{ .Page.Language | default " en" }}">
2022-10-18 22:11:53 -07:00
<head>
{{ partial "header.html"}}
{{ partial "header.meta.html" .}}
{{ partial "script.menu.html"}}
<title>{{ .Title }}</title>
</head>
2022-10-18 22:11:53 -07:00
<body>
{{ partial "navbar" . }}
{{ partial "hero.html" . }}
<div class="container">
<br>
2022-10-18 22:11:53 -07:00
<div class="buttons">
{{ range .Data.Pages }}
<button class="button">
<a href="{{.RelPermalink}}">{{ .Title }}</a>
</button>
{{ end }}
</div>
</div>
</body>