-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconcert-music.html
62 lines (62 loc) · 2.12 KB
/
concert-music.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
---
title: Concert Works
permalink: /concert-music/
---
<p class="lead">
If you are interested in purchasing or renting scores or parts, please <a href="#contactModal" data-toggle="modal">get in touch</a>!
</p>
<div id="concert-music" class="accordion">
{% assign pieces = site.concert-music | sort: 'completed' | reverse %}
{% for piece in pieces %}
<div class="card">
<div id="{{ piece.slug }}-heading" class="card-header">
<h3 class="piece-title mb-0">
<button class="btn btn-link" type="button" data-toggle="collapse" data-target="#{{ piece.slug }}" aria-expanded="false" aria-controls="{{ piece.slug }}">
{{ piece.title }} <small>for {{ piece.ensemble-type }}</small>
</button>
<small>({{ piece.completed }}) ({{ piece.length }})</small>
</h3>
</div>
<div id="{{ piece.slug }}" class="collapse" aria-labeledby="{{ piece.slug }}-heading" data-parent="#concert-music">
<div class="card-body">
<div class="row">
<div class="col-sm-7">
<div class="piece-media">
{% if piece.youtube %}
<div class="youtube-embed">
{{ piece.youtube }}
</div>
{% endif %}
{{ piece.bandcamp }}
{{ piece.soundcloud }}
</div>
<div class="instrumentation">
<h3>Instrumentation:</h3>
<ul class="list-unstyled">
{% for i in piece.instrumentation %}
<li>{{ i }}</li>
{% endfor %}
</ul>
</div>
</div>
<div class="col-sm-5">
{% if piece.movements %}
<div class="piece-movements">
<ol>
{% for i in piece.movements %}
<li>{{ i }}</li>
{% endfor %}
</ol>
</div>
{% endif %}
<div class="piece-program-notes">
<h3>Program Notes:</h3>
{{ piece.content | markdownify }}
</div>
</div>
</div>
</div>
</div>
</div>
{% endfor %}
</div>