{% extends "base.html" %} {% block title %}Browse{% endblock %} {% block body_class %}catalog-page{% endblock %} {% block content %}

Browse Catalog

{% for item in items %}
{% if item.cover_art_path %} {{ item.title }} {% else %}
{{ item.title[:1] }}
{% endif %}

{{ item.title }}

{{ (item.duration_sec // 60) }}m
{% endfor %}
{% if not items %}

No items found.

{% endif %} {% endblock %} {% block scripts %} {% endblock %}