eorzea-songbook/templates/motif.html

27 lines
885 B
HTML

{% extends "base.html" %}
{% 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="/static/motificon.png" alt="Motif Icon" class="title-icon"/><h1> {{ name }} </h1>
</hgroup>
<!-- Clips -->
<div class="entrypage-connections">
<h2>Featured In:</h2>
<ul>
{% for song_id, motif_id, song in clip_info %}
<li class="entrypage-clip">
<audio
controls
src = "{{ url_for('static', filename='clip/') }}{{ '%04d' % song_id }}-{{ '%03d' % motif_id }}.flac" type="audio/flac">
</audio>
<span class="clip-pointer"><a href="/song/{{ song_id }}">{{ song }}</a></span>
</li>
{% endfor %}
</ul>
</div>
{% endblock %}