{% 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 error is defined %} {% endif %}
{{ form(search_form) }}

{% trans %}Build a search query{% endtrans %} {{ icon('arrow-down', 'icon icon-details-open') | raw }}

{{ form(search_builder_form) }}

{# Backwards compatibility with hAtom 0.1 #}
{% if notes is defined and notes is not empty %} {% for note in notes %} {% block current_note %}
{{ noteView.macro_note(note['note'], []) }}
{% endblock current_note %} {% endfor %} {% else %}

{% trans %}No notes here.{% endtrans %}

{% endif %}
{% for actor in actors %} {% include 'cards/profile/view.html.twig' with {'actor': actor} %} {% endfor %} {{ "Page: " ~ page }} {% endblock body %}