bunteshaus.de/themes/buha/layouts/_default/taxonomy.html

13 lines
384 B
HTML

{{ define "content" }}
<div>
{{ if eq .Kind "taxonomy" }}
{{ range .Pages }}
<a href="{{ .Page.Permalink }}" class="underline" style="margin-right: 1rem;">{{ .Page.Title }}</a>
{{ end }}
{{ else }}
{{- $pages := .Data.Pages -}}
{{ partial "news/gen_list" (dict "context" . "pages" $pages "content" .Content "type" .Type "paginate" true) }}
{{ end }}
</div>
{{ end }}