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

16 lines
324 B
HTML

{{ partial "header.html" . }}
{{ 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>
{{ partial "footer.html" . }}