{% extends 'stdgrid.html.twig' %}
{% set override_import = handle_override_template_import('/network/feed.html.twig', '/cards/note/view.html.twig') %}
{% import override_import as noteView %}
{% block title %}{% if page_title is defined %}{{ page_title | trans }}{% endif %}{% endblock %}
{% block stylesheets %}
{{ parent() }}
{% endblock stylesheets %}
{% block body %}
{# Backwards compatibility with hAtom 0.1 #}
{% if notes is defined and notes is not empty %}
{% for conversation in notes %}
{% block current_note %}
{{ noteView.macro_note(conversation['note'], conversation['replies']) }}
{% endblock current_note %}
{% endfor %}
{% else %}