eorzea-songbook/templates/motifindex.html

25 lines
964 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends 'base.html' %}
{% block title %}Motif Index{% endblock %}
{% block sheet %}<link rel="stylesheet" href="{{ url_for('static', filename='motifbuttonpressed.css') }}" />{% endblock %}
{% block content %}
<section class="category-list">
{% for category_id, name in category_info %}
<div>
<h2 class="sort-box category">{{ 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>
<div class="motif-name">{{ motif }}</div>
</li>
<img src="/static/songicon.png" alt="Song Icon" class="count-icon"/>
{% if count %}<div class="clip-count">{{ count }}</div>{% endif %}
</a>
{% endfor %}
</ul>
</div>
{% endfor %}
</section>
{% endblock %}