{% if books.size > 0 %}

{% heroicon "outline" "book-open" "Books" "height=28" %}
Books

{% for book in books %}
{%- capture bookImg %}{{book.cover}}{% endcapture -%} {%- capture bookName %}{{book.title | escape}}{% endcapture -%} {% image bookImg, bookName, 'rounded-lg w-full h-full', '180px' %}
{% endfor %}
{% endif %}