bobatheme/layouts/taxonomy/term.html

25 lines
590 B
HTML
Raw Normal View History

2021-11-21 19:43:56 -06:00
{{ define "main" }}
<h1>
{{ if eq .Data.Singular "tag" }}
{{ partial "icon.html" "tag" }}
{{ else if eq .Data.Singular "category" }}
{{ partial "icon.html" "folder" }}
{{ else }}
{{ partial "icon.html" "filter" }}
{{ end }}
2021-11-21 19:43:56 -06:00
{{ .Title | markdownify }}
{{ partial "rss-link.html" . }}
</h1>
{{ partial "post-metadata/taxonomy.html" . }}
2022-05-06 19:44:27 -05:00
{{ with .Content }}
{{ . }}
{{ end }}
{{ partial "page-list.html" .Paginator.Pages }}
2021-11-21 19:43:56 -06:00
{{ partial "pagination.html" . }}
{{ end }}