gnu-social/plugins/RelatedTags/templates/related_tags/actor_tags.html.twig
Eliseu Amaro 4657a1d6a5
[COMPONENTS][Tag] Fix actor tag template
[PLUGINS][RelatedTags] Fix actor tag template
2021-12-07 15:35:27 +00:00

10 lines
257 B
Twig

{% if actor_tags is not empty %}
<div class="section-widget section-widget-padded">
<h2>Related tags:</h2>
{% for at in actor_tags %}
{% include 'cards/tag/actor_tag.html.twig' with { 'tag': at, 'actor': null } %}
{% endfor %}
</div>
{% endif %}