eorzea-songbook/templates/songindex.html
2023-06-07 20:02:10 +10:00

15 lines
401 B
HTML

{% extends "nav.html" %}
{% block title %}Song Index{% endblock %}
{% block content %}
{% for album_id, name, date in album_info %}
<h2>{{ name }}</h2>
<ul>
{% for song_id, album, track, name, name_jp in song_info if album_id == album %}
<li><a href="{{ url_for('songpage', id=song_id) }}">#{{ track }}: {{name}} / {{name_jp}}</li></a>
{% endfor %}
</ul>
{% endfor %}
{% endblock %}