21 lines
442 B
Twig
21 lines
442 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% import '/cards/note/view.html.twig' as noteView %}
|
|
|
|
{% block body %}
|
|
{% for note in notes %}
|
|
{% block current_note %}
|
|
<div class="section-widget">
|
|
{{ noteView.macro_note(note) }}
|
|
</div>
|
|
{% endblock current_note %}
|
|
{% endfor %}
|
|
|
|
{% for actor in actors %}
|
|
{% include 'actor/view.html.twig' with {'actor': actor} %}
|
|
{% endfor %}
|
|
|
|
{{ "Page: " ~ page }}
|
|
{% endblock %}
|
|
|