{% 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 %}

{% if is_admin %}
Certain items are hidden from results. {% if show_hidden %} Hide them again {% else %} Show hidden items? {% endif %}
{% endif %}
{% for item in items %}
{% if item.cover_art_source in ('tmdb', 'omdb') and item.cover_art_path %} {{ item.title }} {% elif item.placeholder_art %} {# Branded placeholder up front; reveal the real (often poor) thumbnail on hover via CSS crossfade. #}
{{ item.title }} {% if item.thumbnail_url %} {% elif item.cover_art_path %} {% endif %}
{% elif 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 %} {% set sort_q = ('&sort=' ~ sort) if (sort and sort != 'default') else '' %} {% endblock %} {% block scripts %} {% endblock %}