diff --git a/templates/apiSearch/index.html.twig b/templates/apiSearch/index.html.twig
index 4012959..27abfb5 100644
--- a/templates/apiSearch/index.html.twig
+++ b/templates/apiSearch/index.html.twig
@@ -3,7 +3,6 @@
{% block title %}{% endblock %}
{% block body %}
-
Résultats pour :
@@ -34,7 +33,7 @@
{{ book.volumeInfo.publishedDate }}
{% endif %}
-
+
{% if book.volumeInfo.categories is defined %}
{% for categorie in book.volumeInfo.categories %}
+ {% endif %}
+
+ {% if book.volumeInfo.publisher is defined and book.volumeInfo.publisher is not empty %}
+
Aux éditions : {{ book.volumeInfo.publisher }}
+ {% endif %}
+
+ {% if book.volumeInfo.publishedDate is defined and book.volumeInfo.publishedDate is not empty %}
+
Date de publication : {{ book.volumeInfo.publishedDate }}
+ {% endif %}
+
+ {% if book.volumeInfo.categories is defined and book.volumeInfo.categories is not empty %}
+ {% for categorie in book.volumeInfo.categories %}
+
Catégorie : {{ categorie }}
+ {% endfor %}
+ {% endif %}
+
+ {% if book.volumeInfo.pageCount is defined and book.volumeInfo.pageCount is not empty %}
+
Nombre de pages : {{ book.volumeInfo.pageCount }}
+ {% endif %}
+
+ {% if book.searchInfo is defined and book.searchInfo.textSnippet is defined and book.volumeInfo.description is not empty %}
+
Description : {{ book.volumeInfo.description | raw }}