forked from Team3128/team3128.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ncd.html
46 lines (43 loc) · 1.27 KB
/
ncd.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
---
layout: single_page
title: Narwhal Code Day
permalink: /narwhalcodeday/
redirect_from:
- ncd
- ncd/
---
Welcome to Narwhal Code Day! Select one of the activities below and get started coding!
<br><br>
<table width="100%" border="0px" cellpadding="8px" cellspacing="0px">
{% for hoc in site.data.ncd %}
{% if hoc.title %}
<tr>
<td colspan="2" style="vertical-align: top; text-align: center">
<span style="font-size: 40pt; line-height: 44px;">{{ hoc.name }}</span>
<br>
<span style="font-size: 16pt">{{ hoc.description }}</span>
</td>
</tr>
{% else %}
<tr>
<td width="40%">
<img src="/assets/ncd/{{ hoc.image }}" width="100%"/>
</td>
<td style="vertical-align: top">
<span style="font-size: 40pt; line-height: 44px;">{{ hoc.name }}</span>
<br>
<span style="font-size: 16pt">{{ hoc.description }}</span>
</td>
</tr>
<tr>
<td colspan="2">
<a href="{{ hoc.link }}">
<div style="margin-top: 2px; margin-bottom: 24px;" class="button hover_animate" align="center">
Let's Go!
</div>
</a>
</td>
</tr>
{% endif %}
{% endfor %}
</table>