forked from Bunteshaus/bunteshaus.de
13 lines
388 B
HTML
13 lines
388 B
HTML
{{ define "content" }}
|
|
{{ if eq .Kind "taxonomy" }}
|
|
<div>
|
|
{{ range .Pages }}
|
|
<a href="{{ .Page.Permalink }}" class="underline" style="margin-right: 1rem;">{{ .Page.Title }}</a>
|
|
{{ end }}
|
|
</div>
|
|
{{ else }}
|
|
{{- $pages := .Data.Pages -}}
|
|
{{ partial "snippets/gen_list" (dict "context" . "pages" $pages "content" .Content "type" .Type "paginate" true) }}
|
|
{{ end }}
|
|
{{ end }}
|