-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschedule.html
47 lines (42 loc) · 908 Bytes
/
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
---
layout: normal
title: Schedule
color: "#ff5b00"
bg_url: "/assets/images/X.svg"
bg_position: "-20vw 10vh"
---
<header class="content-siteheader">
<h1>{{ page.title }}</h1>
</header>
<div class="framedlists">
<div class="framedlist">
<header class="list-header"><b>Saturday</b>, December 7th</header>
<ol>
{% for item in site.data.saturday %}
<li>
<b>{{ item.time }}</b>
<br>
<span>{{ item.name }}</span>
</li>
{% endfor %}
</ol>
</div>
<div class="framedlist">
<header class="list-header"><b>Sunday</b>, December 8th</header>
<ol>
{% for item in site.data.sunday %}
<li>
<b>{{ item.time }}</b>
<br>
<span>{{ item.name }}</span>
</li>
{% endfor %}
</ol>
</div>
</div>
<!--
<div class="content-footer">
<p><strong>The Schedule is not yet complete.</p>
<p><strong>Stay tuned for <mark class="accent-tc">more</mark>!</strong></p>
</div>
-->