Skip to content

Latest commit

 

History

History
23 lines (22 loc) · 545 Bytes

File metadata and controls

23 lines (22 loc) · 545 Bytes


Tags

{% assign tags = site.tags | sort %} {% for tag in tags %} {% if tag[1].size > 1 %} {% assign id = tag[0] | replace: ' ', '-' %}

#{{ tag[0] }}

{% assign posts = tag[1] | sort | reverse %} {% for post in posts %} {% unless post.hidden %} {% include post-card.html post=post %} {% endunless %} {% endfor %}
{% endif %} {% endfor %}