{% extends "Web/Global.php.twig" %} {% block header %} Recherche AEVLL {% endblock %} {% block body %}
{% if hint %} rien, essayez plutôt {{ hint }} {% elseif result is empty %} Aucun résultats pour votre recherche {% endif %} {% if result %} {% for entname,entities in result %}

{{ entname }}

{% for id,entity in entities %} {% if(entname == 'Article') %}

{{ entity.Entity.title|raw }}

{#{{ entity | var_dump }}#}
{#image
#} {% if entity.Entity.chapo is not empty %} {{ entity.Entity.chapo|striptags|slice(0,200)|raw }}... {% endif %}
{{ entity.Entity.about|striptags|slice(0,500)| raw }}...
{% elseif(entname == 'Rubrique') %}

{{ entity.Entity.title | raw }}

{{ entity.Entity.about|striptags|slice(0,500)| raw }}...
{% elseif(entname == 'Ancien') %}

{{ entity.Entity.nom |upper| raw }} {{ entity.Entity.prenom | raw }}

{{ entity.Entity.bio|striptags|slice(0,1000)| raw }}...
{% endif %} {% endfor %} {% endfor %} {% endif %} {#
#} {##}
{% endblock %}