{% extends "base.html" %} {% block title %}{% if query %}Search: {{ query }}{% else %}Browse{% endif %}{% endblock %} {% block body_class %}catalog-page{% endblock %} {% block content %}

{% if query %}Results for "{{ query }}"{% else %}Browse Catalog{% endif %}

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

{{ item.title }}

{{ (item.duration_sec // 60) }}m
{% if user.rank >= 3 %} {% endif %}
{% endfor %}
{% if not items %}

No items found.

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