{% extends 'base.html.twig' %} {% block title %}{% endblock %} {% block body %}

Recherche de livre pour : {{ query }}

{% for book in datas.items %}

{{ book.volumeInfo.title }}

{% if book.volumeInfo.authors is defined %} {{ book.volumeInfo.authors | join(", ") }} {% endif %}
{% if book.volumeInfo.imageLinks is defined and book.volumeInfo.imageLinks.smallThumbnail is defined %} {% endif %}
{% if book.volumeInfo.publisher is defined %}

Aux éditions : {{ book.volumeInfo.publisher }}

Date de publication : {{ book.volumeInfo.publishedDate }}

{% if book.volumeInfo.categories is defined %} {% for categorie in book.volumeInfo.categories %}

Catégorie : {{ categorie }}

{% endfor %} {% endif %}

Nombres de pages : {{ book.volumeInfo.pageCount }}

Description : {{ book.searchInfo.textSnippet }}

{% endif %}
{% if app.user %} {% endif %}
{% endfor %}
{% endblock %}