{% extends 'base.html.twig' %} {% block stylesheets %} {{ parent() }} {{ encore_entry_link_tags('shelf-css') }} {% endblock %} {% block title %} {% if shelf %} {{shelf.name}} {% else %} Publications {% endif %} {% endblock %} {% block body %} {{parent()}}

{% if shelf %} {{shelf.name}} {% endif %}

{% if booklets|length == 0 %}

Oh no!

There are no booklets yet on this shelf

{% else %}
{% for booklet in booklets %} {% endfor %}
{% endif %}
{% endblock %}