This repository has been archived by the owner on Aug 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bands.html
67 lines (63 loc) · 2.17 KB
/
bands.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
63
64
65
66
67
---
title: Bands and Performers
layout: main
---
<!-- Main -->
<div id="main" class="wrapper orangepurple bands">
<div class="container">
<div class="row">
<!-- SIDEBAR BAND LIST -->
<div id="sidebar" class="3u sidebar">
<section>
<ul class="default">
{% assign bands = site.data.bands | sort: 'name' %}
{% for band in bands %}
{% if band.playing-this-year %}
<li><a href="#{{ band.name | slugify }}">{{ band.name }}</a></li>
{% endif %}
{% endfor %}
</ul>
</section>
</div>
<!-- THIS YEAR'S BANDS LISTINGS -->
<div id="content" class="9u skel-cell-important">
<section>
<header class="major">
<h2>{{ page.title }}</h2>
<span class="byline">Bands on at Cawoodstock {{ site.data.key-data.year }}</span>
</header>
<ul>
{% for band in bands %}
<li>
<h3><a name="{{ band.name | slugify }}">{{ band.name }}</a></h3>
<div class="row">
<div class="3u">
<img src="assets/images/{{ band.name | slugify }}.jpg" alt="">
</div>
<div class="9u">
<p>{{ band.blurb }}</p>
{% if band.lineup %}
<p>Lineup: {{ band.lineup }}</p>
{% endif %}
{% if band.facebook %}
<p><a href="{{ band.facebook }}">
<i class="fab fa-facebook"></i>
{{ band.facebook }}
</a></p>
{% endif %}
{% if band.web %}
<p><a href="{{ band.web }}">
<i class="fas fa-globe"></i>
{{ band.web }}
</a></p>
{% endif %}
</div>
</div>
</li>
{% endfor %}
</ul>
</section>
</div>
</div>
</div>
</div>