diff options
author | EuAndreh <eu@euandre.org> | 2021-01-01 22:17:00 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-01-01 22:22:30 -0300 |
commit | 8344825a7b4d006fb6a163d87636b589d8af25cc (patch) | |
tree | 2f9bd12b7bc64c661f6d2332bbf618dcfce584b4 /_includes | |
parent | post.html: Add trailing '/' to source tag (diff) | |
download | euandre.org-8344825a7b4d006fb6a163d87636b589d8af25cc.tar.gz euandre.org-8344825a7b4d006fb6a163d87636b589d8af25cc.tar.xz |
Add support for "Music"
Diffstat (limited to '')
-rw-r--r-- | _includes/music-listing.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/_includes/music-listing.html b/_includes/music-listing.html new file mode 100644 index 0000000..fc50888 --- /dev/null +++ b/_includes/music-listing.html @@ -0,0 +1,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> |