gnu-social/plugins/RelatedTags/templates/related_tags/actor_tags.html.twig
Eliseu Amaro 546c5c84fd
[COMPONENTS][Tag] Actor/Note tag template polished
[PLUGINS][RelatedTags] Disable rendering of template when no results are found
2021-12-06 22:22:23 +00:00

10 lines
256 B
Twig

{% if note_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 %}