{% extends "base.html" %} {% from "_macros.html" import cover_url %} {% from "_partials/brand_glyph.html" import brand_glyph %} {% block title %}Catalog — {{ library_name() }}{% endblock %} {% block content %} {% if show_landing %}
{{ brand_glyph('4.5rem', label=library_name() ~ ' logo') }}
{{ library_name() }}
Search your collection
{% endif %}
{% if show_landing %} {% if featured_lists %} {% for cl in featured_lists %}

{{ cl.name }}

{% if cl.description %}

{{ cl.description }}

{% endif %}

View all {{ cl.entries | length }} item{{ 's' if cl.entries | length != 1 else '' }} →

{% endfor %} {% endif %} {% if new_arrivals %}

New arrivals

{% endif %} {% if recently_returned %}

Recently returned

{% endif %} {% if new_arrivals or recently_returned %}

All works

{% endif %}
{% include "_partials/work_list.html" %}
{% else %}
{% include "_partials/work_list.html" %}
{% endif %} {% endblock %} {% block scripts %} {% endblock %}