forked from GNUsocial/gnu-social
Eliseu Amaro
7891461d36
[PLUGINS][AttachmentShowRelated] Fix template [CSS] Fix section-subtitle-details children padding issues [COMPONENTS][Posting] Remove unnecessary colon Overall polish of existing plugins templates
13 lines
354 B
Twig
13 lines
354 B
Twig
{% import '/cards/note/view.html.twig' as noteView %}
|
|
|
|
<section class="section-widget section-padding">
|
|
<div class="section-title">
|
|
<h2 class="heading-no-margin">
|
|
{{ 'Notes related' | trans }}
|
|
</h2>
|
|
</div>
|
|
|
|
{% for note in related_notes %}
|
|
{{ noteView.macro_note_minimal(note) }}
|
|
{% endfor %}
|
|
</section> |