{% extends "base.html" %} {% block title %}Catalog — Pitchkit{% endblock %} {% block content %}
{% if search or genre or mood %} Clear {% endif %}
{% if songs %}
{% for song in songs %} {% set id, filename, title, artist, album, bpm, key_, duration, genre_tags, mood_tags, themes, energy, danceability = song %} {% endfor %}
Title Artist BPM Key Genre Mood Duration
{{ title or filename|replace('.mp3','')|replace('.wav','')|replace('.aif','')|replace('.aiff','') }}
{% if album %}
{{ album }}
{% endif %}
{{ artist or "—" }} {% if bpm %}{{ bpm|int }}{% else %}—{% endif %} {{ key_ or "—" }} {% if genre_tags %} {% for t in genre_tags.split(',')[:2] %}{{ t.strip() }}{% endfor %} {% else %}—{% endif %} {% if mood_tags %} {% for t in mood_tags.split(',')[:2] %}{{ t.strip() }}{% endfor %} {% else %}—{% endif %} {% if duration %} {% set m = (duration|int) // 60 %}{% set s = (duration|int) % 60 %}{{ m }}:{{ "%02d"|format(s) }} {% else %}—{% endif %} Details & Lyrics
{% if pages > 1 %} {% endif %} {% else %}

No songs found{% if search or genre or mood %} matching your filters{% endif %}.

{% if search or genre or mood %}Clear Filters{% endif %}
{% endif %} {% endblock %} {% block scripts %} {% endblock %}