Files
Twain/src/BenRamey/BenRameyTheme/Views/BlogPost-Category.liquid
2024-04-04 09:25:30 -05:00

9 lines
287 B
Plaintext

<nav class="post-categories">
<span>{{ "posted in" | t }}:</span>
{% assign categoryTerms = Model.Field | taxonomy_terms %}
{% for categoryTerm in categoryTerms %}
{% a display_for: categoryTerm %}
{{ categoryTerm.DisplayText }}
{% enda %}
{% endfor %}
</nav>