-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathliedjes_in_beta.html
More file actions
57 lines (49 loc) · 1.5 KB
/
Copy pathliedjes_in_beta.html
File metadata and controls
57 lines (49 loc) · 1.5 KB
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
---
layout: default
title: Liedjes in beta
---
<div class="page-content">
<h1 class="gigs-page__title">Deze liedjes zijn nog in beta</h1>
<div class="songs-grid">
{% assign sorted_songs = site.songs | sort: 'title' %}
{% for song in sorted_songs %}
<div class="song-card">
<a href="{{ song.url }}" class="song-card__link">
<h2 class="song-card__title">{{ song.title }}</h2>
{% if song.artist %}
<p class="song-card__meta">
<span class="song-card__meta-label">Artiest:</span>
{{ song.artist }}
</p>
{% endif %}
{% if song.genre %}
<span class="song-card__badge song-card__badge--genre">
{{ song.genre }}
</span>
{% endif %}
{% if song.duration %}
<span class="song-card__badge song-card__badge--duration">
{{ song.duration }}
</span>
{% endif %}
{% if song.excerpt %}
<p class="song-card__excerpt">
{{ song.excerpt | strip_html | truncate: 100 }}
</p>
{% endif %}
<div class="song-card__cta">
Naar song →
</div>
</a>
</div>
{% endfor %}
</div>
{% if site.songs.size == 0 %}
<div class="songs-empty" role="alert">
<p class="songs-empty__title">Nog geen liedjes toegevoegd</p>
<p>Voeg liedjes toe in de
<code>_songs</code>
map.</p>
</div>
{% endif %}
</div>