8 lines
300 B
Text
8 lines
300 B
Text
<div class="tag-list-wrapper box">
|
|
<h2>tags</h2>
|
|
<ul class="tag-list">
|
|
{% for tag, posts in collections | exclude_collections("reviews", "all") %}
|
|
<li class="tag-item"><p>{{ tag | i18n }} ({{ posts | i18n_filter | length }})</p></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|