+ {% 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.volumeInfo is defined and book.volumeInfo.description is defined and book.volumeInfo.description is not empty %}
+
Description : {{ book.volumeInfo.description | raw }}