eorzea-songbook/templates/motif.jinja
2024-04-09 17:36:30 +10:00

26 lines
871 B
Django/Jinja

{% extends "base.jinja" %}
{% block title %}{{ name }}{% endblock %}
{% block sheet %}<link rel="stylesheet" href="{{ url_for('static', filename='motifbuttonpressed.css') }}" />{% endblock %}
{% block content %}
<hgroup class="title-box eng-title">
<img src="{{ url_for('static', filename='motificon.png') }}" alt="Motif Icon" class="title-icon"/><h1> {{ name }} </h1>
</hgroup>
<!-- Clips -->
<div class="entrypage-connections">
<ul class="motifpage-list">
{% for song_id, motif_id, song, feature, location in clip_info if feature %}
{% include "motifpageclipget.jinja" %}
{% endfor %}
</ul>
<h2>Featured In:</h2>
<ul class="motifpage-list">
{% for song_id, motif_id, song, feature, location in clip_info if not feature %}
{% include "motifpageclipget.jinja" %}
{% endfor %}
</ul>
</div>
{% endblock %}