eorzea-songbook/templates/motifindex.html

37 lines
1.3 KiB
HTML

{% extends 'base.html' %}
{% block title %}Motif Index{% endblock %}
{% block content %}
<section class="category-list">
{% for category_id, name in category_info %}
<div class="sort-box category">
<h2>{{ name }}</h2>
<ul>
{% for motif_id, motif, category, count in motif_info if category == category_id %}
<a href="{{ url_for('motifpage', id=motif_id) }}" class="entry-box motif">
<li>
<span class="motif-name">{{ motif }}</span>
</li>
{% if count %}<span class="clip-count">x{{ count }}</span>{% endif %}
</a>
{% endfor %}
</ul>
</div>
{% endfor %}
<div class="sort-box category">
<h2>Misc.</h2>
<ul>
{% for motif_id, motif, category, count in motif_info if category == '' %}
<a href="{{ url_for('motifpage', id=motif_id) }}" class="entry-box motif">
<li>
<span class="motif-name">{{ motif }}</span>
</li>
{% if count %}<span class="clip-count"> x{{ count }} {% endif %}</span>
</a>
{% endfor %}
</ul>
</div>
</section>
{% endblock %}