hugo-template/layouts/taxonomy.html

12 lines
344 B
HTML

{{ define "main" }}
<h1>All {{ .Title }}</h1>
{{ .Content }}
<section id="taxonomy-page">
{{ $taxonomy := .Title | urlize }}
{{ range .Pages }}
<!-- <h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2> -->
{{ partial "term-link.html" (dict "name" .LinkTitle "taxonomy" $taxonomy ) }}
{{ end }}
</section>
{{ end }}