jlelse
/
Indiego
Archived
1
Fork 0
This repository has been archived on 2020-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Indiego/layouts/partials/post_tags.html

14 lines
456 B
HTML

{{ if or (.GetTerms "tags") (.GetTerms "series") }}
<p>
{{ with (.GetTerms "series") }}
{{ range sort . "Pages" "desc" }}
<a class="p-category" href="{{ .RelPermalink }}" rel="tag">{{ .Title }}</a><sup>{{ len .Pages }}</sup>
{{ end }}
{{ end }}
{{ with (.GetTerms "tags") }}
{{ range sort . "Pages" "desc" }}
<a class="p-category" href="{{ .RelPermalink }}" rel="tag">{{ .Title }}</a><sup>{{ len .Pages }}</sup>
{{ end }}
{{ end }}
</p>
{{ end }}