{# q string #} {# results array #} {% set title = 'search_engine.f.index.title'|trans %} {% extends ':default:subpage.html.twig' %} {% block title %} {{ parent() }} - {{ title }} {% endblock %} {% block subpage_content %}
{% spaceless %} {% if q == null %} {% else %}

{{ 'search_engine.f.index.search_results'|trans }}:

{{ 'search_engine.f.index.sfor'|trans({':q' : q}) }}

{% if results|length > 0 %} {% for result in results %}

{{ result['name'] }} ({{ engine.categoryName(result['cat']) }})

{% endfor %} {% else %} {% endif %} {% endif %} {% endspaceless %} {% endblock %}