add blog sidebar

This commit is contained in:
yuki 2025-10-18 10:40:54 -03:00
parent 24e6abb811
commit 2e006c00b2
Signed by: yuki
GPG key ID: 0C98E6FF04EC3915

View file

@ -0,0 +1,8 @@
<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>