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

12 lines
528 B
HTML
Raw Normal View History

2020-02-20 11:40:29 +00:00
{{ if or (.GetTerms "tags") (.GetTerms "series") }}
2019-09-03 15:50:00 +00:00
<div class="tags">
<ul class="tags-list">
2020-02-20 11:40:29 +00:00
{{ range (.GetTerms "series") }}
<li class="tag-item"><div class="tag-link"><a class="p-category" href="{{ .RelPermalink }}" rel="tag">{{ .Title }}</a><sup>{{ len .Pages }}</sup></div></li>
{{ end }}
2020-02-20 11:40:29 +00:00
{{ range (.GetTerms "tags") }}
<li class="tag-item"><div class="tag-link"><a class="p-category" href="{{ .RelPermalink }}" rel="tag">{{ .Title }}</a><sup>{{ len .Pages }}</sup></div></li>
{{ end }}
2019-09-03 15:50:00 +00:00
</ul>
</div>
{{ end }}