quitsocialmedia.club/_includes/post-tags.html

12 lines
421 B
HTML
Raw Normal View History

2020-12-31 20:03:57 +01:00
<div class="flex row">
{% for tagg in site.data.tags %}
{% for present in page.tags %}
{% capture tag %}{{ tagg.title | downcase | slugify }}{% endcapture %}
{% capture post-tag %}{{ present | downcase | slugify }}{% endcapture %}
{% if tag == post-tag %}
<a href="/tags#{{ tag }}" rel="tag" class="{{ tag }} smaller written button">{{ tagg.title }}</a>
{% endif %}
{% endfor %}
{% endfor %}
</div>