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
/
print-schedule.html
52 lines (47 loc) · 1.64 KB
/
print-schedule.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
---
title: Cawoodstock Programme
layout: main
---
<!-- Main -->
<div id="main print" class="wrapper orangepurple">
<div class="container">
<div class="row">
<!-- Content -->
<div id="content" class="12u skel-cell-important">
<section>
<header class="major">
<h2>Cawoodstock {{ site.data.key-data.year }} Programme</h2>
<p>
{% for festivalday in site.data.key-data.dates %}
<a href='#{{ festivalday[0] }}'>{{ festivalday[1] }}</a> -
{% endfor %}
</p>
</header>
<!-- unfortunately you cannot make dynamically-named includes in jekyll -->
<!-- hence this hard-coded list -->
<ul class="default">
<li>
<h2><a name="friday">{{ site.data.key-data.dates['friday'] }}</a></h2>
</li>
{% include friday-schedule.html %}
<li>
<h2><a name="saturday">{{ site.data.key-data.dates['saturday'] }}</a></h2>
</li>
{% include saturday-schedule.html %}
<li>
<h2><a name="sunday">{{ site.data.key-data.dates['sunday'] }}</a></h2>
</li>
{% include sunday-schedule.html %}
</ul>
</section>
<section>
<h2>Information</h2>
<h3>Parking</h3>
{% include info/parking.html %} For more information see <a href="getting-here">Getting Here</a> information
<h3>Children</h3>
<p>{% include info/children.html %}</p>
</section>
</div>
</div>
</div>
</div>