gnu-social/plugins/AttachmentShowRelated/templates/attachmentShowRelated/attachmentRelatedTags.html.twig
Eliseu Amaro 7891461d36
[PLUGINS][AttachmentCollections] Fix template
[PLUGINS][AttachmentShowRelated] Fix template

[CSS] Fix section-subtitle-details children padding issues

[COMPONENTS][Posting] Remove unnecessary colon

Overall polish of existing plugins templates
2021-12-25 17:31:16 +00:00

13 lines
331 B
Twig

<section class="section-widget section-padding">
<div class="section-title">
<h2 class="heading-no-margin">
{{ 'Attachment tags' | trans }}
</h2>
</div>
{% for tag in related_tags %}
<i>#{{ tag['tag'] }}</i>
{% else %}
{{ 'No tags' | trans }}
{% endfor %}
</section>