blob: fc50888fafb28809ea6d7ea6f3d135179b426859 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<h3>
{{ site.t.music.scores[page.lang] }}
</h3>
<ul class="no-style">
{% for m in site.musics | sort: "composer" %}
<li>
{{ m.composer }}
<br />
<a href="{% link music/{{ m.ref }}.pdf %}">{{ m.title }}</a>
<br />
<audio controls>
<source src="{% link music/{{ m.ref }}.ogg %}" type="audio/ogg" />
</audio>
<!-- <strong>{{ m.title }}</strong> - -->
<!-- <a href="{% link music/{{ m.ref }}.ogg %}">Audio</a> -->
</li>
{% endfor %}
</ul>
|