{% extends "../base.html" %} {% load wagtailcore_tags %} {% block title %}Recherche{% endblock %} {% block content %}

Résultats de recherche {% if search_query %} pour : {{ search_query }}{% endif %} {% if standard_page_results %}

Pages

{% endif %} {% if articles_results %}

Actualités

{% for article in articles_results %}
{% include "blog/blog_item.html" %}
{% endfor %}
{% endif %} {% if podcasts_results %}

Podcasts

{% for podcast in podcasts_results %}
{% include "wagtailwebradio/podcast_item.html" %}
{% endfor %}
{% endif %} {% endblock %}