gnu-social/plugins/RelatedTags/templates/related_tags/note_tags.html.twig
Eliseu Amaro b3d582f665
[PLUGINS][AttachmentCollections] Fixed "Error: Expected Doctrine\ORM\Query\Lexer::T_IDENTIFIER, got 'Plugin\AttachmentCollections\Entity\AttachmentCollection'"
[TWIG] Cards are now divided into blocks and macros, additional macros done, attachments page no longer inside cards directory
[CARDS][Navigation] Now using macros to create section, details, and nav elements
2022-02-07 01:54:04 +00:00

10 lines
252 B
Twig

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