gnu-social/plugins/RelatedTags/templates/related_tags/note_tags.html.twig

10 lines
250 B
Twig

{% if note_tags is not empty %}
<div class="frame-section frame-section-padding">
<h2>Related tags:</h2>
{% for nt in note_tags %}
{% include 'cards/tag/note_tag.html.twig' with { 'tag': nt } %}
{% endfor %}
</div>
{% endif %}