forked from GNUsocial/gnu-social
13 lines
363 B
Twig
13 lines
363 B
Twig
{% import '/cards/note/view.html.twig' as noteView %}
|
|
|
|
<section class="frame-section frame-section-padding">
|
|
<div class="section-title">
|
|
<span class="heading-no-margin">
|
|
{{ 'Notes related' | trans }}
|
|
</span>
|
|
</div>
|
|
|
|
{% for note in related_notes %}
|
|
{{ noteView.macro_note_minimal(note) }}
|
|
{% endfor %}
|
|
</section> |