{% 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 %}
{% if page_title is defined %}

{{ page_title | trans }}

{% endif %}
{# Backwards compatibility with hAtom 0.1 #}
{% if notes is defined and notes is not empty %} {% 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 %} {% else %}
{{ icon('logo', 'icon feed-background') | raw }}
{% endif %}
{% endblock body %}