b3d582f665
[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
13 lines
359 B
Twig
13 lines
359 B
Twig
{% import '/cards/macros/note.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.note_compact(note) }}
|
|
{% endfor %}
|
|
</section> |