-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmusic.html
60 lines (57 loc) · 1.67 KB
/
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
---
title: Music
permalink: music.html
description: >
Yet another guitarist publishing solo guitar videos on YouTube.
twitter:
card: player
player: https://www.youtube.com/embed/GgaOsqMQEkE
---
<section>
<h2>Music</h2>
<p class=lead>{{ page.description | strip }}
{%- for track in site.data.music %}
<article>
<h2>{{ track.title }}</h2>
<figure class=track>
<a data-fslightbox=html5-youtube-videos
href="https://www.youtube.com/watch?v={{ track.key }}">
<img class=track src="{{ 'assets/images/music/'
| append: track.key
| append: '.jpg' }}"
alt="{{ track.title }}">
</a>
<figcaption>
{{ track.description | strip }}
</figcaption>
</figure>
{%- for testimonial in track.testimonials %}
<figure>
<blockquote cite="{{ testimonial.url }}">
<p>{{ testimonial.quote }}
</blockquote>
<figcaption>
—{{ testimonial.author }},
<cite>
<a href="{{ testimonial.url }}">
{{ testimonial.type }} from {{ testimonial.date | date_to_long_string: "ordinal", "US" }}
</a>
</cite>
</figcaption>
</figure>
{%- endfor %}
</article>
{%- endfor %}
</section>
<aside>
{%- for image in site.static_files %}
{%- if image.path contains 'images/music/studio' %}
<figure>
<a data-fslightbox href="{{ image.path }}">
<img src="{{ image.path }}" class=music>
</a>
<figcaption>Credits <a href="https://www.instagram.com/thrashyone/">@thrashyone</a></figcaption>
</figure>
{%- endif %}
{%- endfor %}
</aside>