{% extends "base.html" %} {% load i18n static cms_tags %} {% block template_class %}template_search{% endblock %} {% block content %}
{% for result in results %}
{% if result.snippet %}

{{ result.snippet|safe }}…

{% endif %} {% if result.domain or result.type or result.language or result.last_modified %}

{% if result.domain %}{{ result.domain }}{% endif %}{% if result.type %}{% if result.domain %} · {% endif %}{{ result.type }}{% endif %}{% if result.language %}{% if result.domain or result.type %} · {% endif %}{{ result.language }}{% endif %}{% if result.last_modified %}{% if result.domain or result.type or result.language %} · {% endif %}{{ result.last_modified|date:"SHORT_DATETIME_FORMAT" }}{% endif %}

{% endif %} {% if result.tags %}

{% for t in result.tags %}{{ t }}{% if not forloop.last %}, {% endif %}{% endfor %}

{% endif %}
{% empty %}

{% trans "No results" %}

{% endfor %}
{% if page_links|length > 1 %}
{% include "simplesitesearch/pagination.html" %}
{% endif %} {% endblock %}