{% extends "simple/base.html" %} {% from 'simple/macros.html' import icon, icon_small %} {% block title %}{{ q|e }} - {% endblock %} {% block meta %}{% endblock %} {% block content %} {% include 'simple/search.html' %}
{% if answers %}

{{ _('Answers') }} :

{% for answer in answers -%}
{{ answer }}
{%- endfor %}
{% endif %} {% if corrections %}

{{ _('Try searching for:') }}

{% for correction in corrections %}
{% endfor %}
{% endif %}
{% for result in results %} {% set index = loop.index %} {% if result['template'] %} {% include get_result_template('simple', result['template']) %} {% else %} {% include 'simple/result_templates/default.html' %} {% endif %} {% endfor %} {% if not results and not answers %} {% include 'simple/messages/no_results.html' %} {% endif %}
{{ icon_small('chevron-up') }}
{% if paging %} {% endif %}
{% endblock %}