{% extends "web/base.html" %} {% load static wagtailcore_tags wagtailimages_tags %} {% block body_class %}template-searchresults{% endblock %} {% block title %}Search{% endblock %} {% block content %}
{% if search_results %}
{% for result in search_results %}

{{ result.title|truncatewords:20 }} {{ result.first_published_at|date:"d M Y" }}

{% endfor %}
{% if search_results.has_previous %} Previous {% endif %} {% if search_results.has_next %} Next {% endif %} {% elif search_query %} No results found {% endif %} {% endblock %}