{% extends "lfc/base.html" %} {% load i18n %} {% load lfc_tags %} {% load pagination_tags %} {% block title %} {% trans 'Search results' %} {% endblock %} {% block content %}

{{ lfc_context.title }}

{% if lfc_context.text %} {{ lfc_context.text|safe }} {% endif %}
{% if results %}

{% trans 'You searched for' %} "{{ request.REQUEST.q }}". {% blocktrans count results|length as counter %}There is one page found.{% plural %}There have been {{ counter }} pages found.{% endblocktrans %}

    {% for result in results %}
  1. {% for ancestor in result.get_reverse_ancestors %} {{ ancestor.title }} > {% endfor %} {{ result.title }}

    {% if result.short_text %}

    {{ result.short_text }} {% trans 'Read on' %}.

    {% endif %}
  2. {% endfor %}
{% else %}

{% trans 'There are no results.' %}

{% endif %} {% endblock %}