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
431 B
HTML
Raw Normal View History

{{ if or .Params.tags .Params.series }}
2019-09-03 15:50:00 +00:00
<div class="tags">
<ul class="tags-list">
{{ range .Params.series }}
<li class="tag-item"><a class="tag-link" href="{{ "series/" | relLangURL }}{{ . | urlize }}/">{{ . }}</a></li>
{{ end }}
{{ range .Params.tags }}
2019-09-03 15:50:00 +00:00
<li class="tag-item"><a class="tag-link p-category" href="{{ "tags/" | relLangURL }}{{ . | urlize }}/" rel="tag">{{ . }}</a></li>
{{ end }}
2019-09-03 15:50:00 +00:00
</ul>
</div>
{{ end }}