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

Résultats 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 : {% if book.searchInfo is defined %} {{ book.searchInfo.textSnippet | raw }} {% endif %}

{% endif %}
{% if app.user %} {% for favori in favoris %} {% if favori.getIdGoogle() == book.id %} {% endif %} {% if favori.getIdGoogle() != book.id %} {% endif %} {% endfor %} {% endif %}
{% endfor %}
{% endblock %}