-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
85 lines (75 loc) · 3.77 KB
/
index.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
---
layout: default
---
<main class="bg-purple header" role="main">
<header class="container-lg p-responsive">
{% include header.html %}
<div class="pb-6 d-flex flex-items-center flex-justify-center flex-column">
<div class="umbrella-wrapper mb-2">
{% include umbrella.svg %}
</div>
{% include GitHub.svg %}
<code class="h1 text-white">Field Day</code>
</div>
</header>
{% include squiggle-white.svg %}
</main>
<div class="container-md p-responsive py-6 d-flex flex-items-center flex-justify-center flex-column mb-2">
<h2 class="alt-h2 lh-condensed my-3 text-center">An unconference for leaders of technical student communities</h2>
<p class="py-2 text-center"><strong>October 13</strong> at GitHub HQ in San Francisco as part of <a href="https://githubuniverse.com" target="_blank">GitHub Universe</a></p>
<span class="btn btn-outline btn-outline-purple mt-3 disabled">Registration is closed 🌂</span>
<h3 class="alt-h3 py-2 text-center mt-4">Join our mailing list to be informed about future events for student leaders.</h3>
<a href="http://github.us11.list-manage1.com/subscribe?u=9d7ced8c4bbd6c2f238673f0f&id=8eddd9fb6f" class="btn btn-outline-purple">Sign up to the mailing list</a>
</div>
<div class="container-md mb-6 p-responsive text-center py-6 d-flex flex-items-center flex-justify-center flex-column">
<h2 class="alt-h2 lh-condensed mb-3 text-center">An afternoon of discussions</h2>
<p class="alt-h3 mb-3 text-center">Field Day brings together a group of student leaders for an afternoon of conversation in the form of lightning talks, discussions, games, or whatever suits the topic best.</p>
<div class="event-imgs mx-auto my-4">
<img class="rounded-1" src="{{ site.baseurl }}/assets/pictures/1.png" />
<img class="rounded-1" src="{{ site.baseurl }}/assets/pictures/2.png" />
<img class="rounded-1" src="{{ site.baseurl }}/assets/pictures/3.png" />
<img class="rounded-1" src="{{ site.baseurl }}/assets/pictures/4.png" />
</div>
</div>
<div class="container-md p-responsive py-6" id="schedule">
<h1 class="text-center">Schedule</h1>
<table class="data-table">
<tbody>
<tr><td><time>12:30</time></td><td>Lunch</td></tr>
<tr><td><time>13:30</time></td><td>Welcome to Field Day</td></tr>
<tr><td><time>14:00</time></td><td>Breakout Discussions I</td></tr>
<tr><td><time>14:30</time></td><td>Breakout Discussions II</td></tr>
<tr><td><time>15:00</time></td><td>Campus Expert Fireside Chat</td></tr>
<tr><td><time>16:00</time></td><td>Breakout Discussions III</td></tr>
<tr><td><time>16:30</time></td><td>Breakout Discussions IV</td></tr>
<tr><td><time>17:00</time></td><td>Feedback Round</td></tr>
<tr><td><time>17:30</time></td><td>Closing Remarks</td></tr>
</tbody>
</table>
</div>
<div class="container-lg mb-6 p-responsive py-6 d-flex flex-items-center flex-sm-justify-between flex-justify-center text-center text-sm-left" id="venue">
<address class="addr mono">
<h2 class="alt-h2 lh-condensed mb-2">GitHub HQ</h3>
88 Colin P Kelly Jr Street</br>
San Francisco, CA 94107
</address>
<div class="map-container">
<iframe
width="600"
height="450"
frameborder="0" style="border:0"
src="https://www.google.com/maps/embed/v1/place?key=AIzaSyBDS02MdHUUV8zVPriYlLsYIK4CvIoUcq8&q=88+Colin+P=Kelly+Jr+San+Francisco" allowfullscreen>
</iframe>
</div>
</div>
<div class="py-6 p-responsive mt-2 bg-gray-light" id="faq">
<div class="container-md">
<h3 class="text-center">FAQ</h3>
{% for faq in site.faqs %}
<div class="py-3" id="{{ faq.q | slugify }}">
<h4 class="mb-1"><a href="#{{ faq.q | slugify }}" class="text-purple">{{faq.q}}</a></h4>
<p>{{ faq.a }}</p>
</div>
{% endfor %}
</div>
</div>