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

18 lines
595 B
HTML

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