-
Notifications
You must be signed in to change notification settings - Fork 2
/
bootcamp.html
45 lines (44 loc) · 1.6 KB
/
bootcamp.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
---
layout: default
title: Data Bootcamp | Space Apps NYC
class: bootcamp
hero: bootcamp-hero.html
---
<section class="container">
<div class="cards bootcamps">
{% for bootcamp in site.bootcamps %}
<div class="card bootcamp">
<img class="bootcamp--image" src="{{ bootcamp.image }}" />
<h3 class="bootcamp--name">{{ bootcamp.name }}</h3>
<div class="bootcamp--meta">
<div class="bootcamp--location">
<div>{{ bootcamp.location.name }}</div>
<div>{{ bootcamp.location.addressLine1 }}</div>
<div>{{ bootcamp.location.addressLine2 }}</div>
</div>
<div class="bootcamp--date">
{{ bootcamp.date }}
</div>
</div>
<div class="bootcamp--info">
{% for info in bootcamp.info %}
<p>{{ info }}</p>
{% endfor %}
<table class="bootcamp--schedule">
{% for event in bootcamp.schedule %}
<tr>
<td>{{ event.time }}</td>
<td>{{ event.name }}</td>
</tr>
{% endfor %}
</table>
{% if bootcamp.register %}
<a class="button" href="{{ bootcamp.register }}">Register</a>
{% elsif bootcamp.video %}
<a class="button" href="{{ bootcamp.video }}">Watch the Video</a>
{% endif %}
</div>
</div>
{% endfor %}
</div>
</section>