{# Page "tout voir" générique d'une section home (grille de couvertures). Args : page_title, page_sub (optionnel), works (list). #} {% extends 'base.html.twig' %} {% block title %}{{ page_title }} · LivreComment{% endblock %} {% block body_class %}page-wide{% endblock %} {% block body %}
Accueil

{{ page_title }}

{% if page_sub is defined and page_sub %}

{{ page_sub }}

{% endif %}
{% if works|length > 0 %}
{% for work in works %} {% if work_cover_thumb(work) %} Couverture de {{ work.title }} {% else %} {% endif %}

{{ work.title }}

{% endfor %}
{% else %}

Rien à afficher pour l'instant

Reviens plus tard, ça se remplit au fil des lectures.

{% endif %} {% endblock %}