{% extends 'base.html.twig' %} {% block title %}{{ seo.title ?? 'Recherche' }}{% endblock %} {% block meta_description %}{{ seo.description ?? '' }}{% endblock %} {% block body %}

{% if keyword %} Recherche : « {{ keyword }} » {% else %} Recherche {% endif %}

{# Formulaire de recherche #}
{% if keyword|length < 2 %}

Veuillez entrer au moins 2 caracteres.

{% else %} {# --- Categories --- #} {% if categories|length > 0 %}

Categories

{% for cat in categories %} {{ cat.name|highlight(keyword) }} {% endfor %}
{% endif %} {# --- Pages --- #} {% if pages|length > 0 %}

Pages

{% for page in pages %}
Page

{{ page.title|highlight(keyword) }}

{{ page.content|striptags|slice(0, 200)|highlight(keyword) }}

{% endfor %}
{% endif %} {# --- Produits --- #} {% if products|default([])|length > 0 %}

Produits ({{ products|length }})

{% for product in products %}
{% if product.image %}
{{ product.title }}
{% endif %}
Produit {% if product.category %} {{ product.category.name }} {% endif %} {% if product.priceHT is not null %} {{ product.priceTTC|number_format(2, ',', ' ') }} € {% endif %}

{{ product.title|highlight(keyword) }}

{% if product.shortDescription %}

{{ product.shortDescription|highlight(keyword) }}

{% endif %}
{% endfor %}
{% endif %} {# --- Articles --- #}

Articles ({{ totalArticles }})

{% for article in articles %}
{% if article.featuredMedia %}
{{ responsive_img(article.featuredMedia, '120px', 'search-result-thumb', article.title) }}
{% endif %}
Article {{ article.createdAt|date('d/m/Y') }} {% for cat in article.categories %} {{ cat.name }} {% endfor %}

{{ article.title|highlight(keyword) }}

{{ (article.featuredText ?: article.content|striptags|slice(0, 200))|highlight(keyword) }}

{% endfor %} {% if totalArticles == 0 and pages|length == 0 and categories|length == 0 and products|default([])|length == 0 %}

Aucun resultat pour « {{ keyword }} »

Verifiez l'orthographe ou essayez des termes plus generaux.

{% endif %} {# --- Pagination --- #} {% if totalPages > 1 %} {% endif %}
{% endif %}
{% endblock %}