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

10 lines
292 B
Twig

{% if actor_tags is not empty %}
<section class="frame-section frame-section-padding">
<span class="section-title">Related tags</span>
{% for at in actor_tags %}
{% include 'cards/blocks/tag_actor.html.twig' with { 'tag': at, 'actor': null } %}
{% endfor %}
</section>
{% endif %}