{% extends 'stdgrid.html.twig' %}
{% import '/cards/note/view.html.twig' as noteView %}
{% block title %}{% if page_title is defined %}{{ page_title | trans }}{% endif %}{% endblock %}
{% block stylesheets %}
{{ parent() }}
{% endblock stylesheets %}
{% block body %}
{% for block in handle_event('BeforeFeed', app.request) %}
{{ block | raw }}
{% endfor %}
{% if notes is defined %}
{% if page_title is defined %}
{{ page_title | trans }}
{% else %}
{{ 'Notes' | trans }}
{% endif %}
{% if notes is not empty %}
{# Backwards compatibility with hAtom 0.1 #}
{% for conversation in notes %}
{% block current_note %}
{% if conversation is instanceof('array') %}
{{ noteView.macro_note(conversation['note'], conversation['replies']) }}
{% else %}
{{ noteView.macro_note(conversation) }}
{% endif %}
{% endblock current_note %}
{% endfor %}
{% endif %}
{% endif %}
{% endblock body %}