-
Notifications
You must be signed in to change notification settings - Fork 18
/
schedule.html
40 lines (38 loc) · 1.35 KB
/
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
---
title: Schedule
---
<!-- Header -->
<header>
<div class="overlay"></div>
<video playsinline="playsinline" autoplay="autoplay" muted="muted" loop="loop">
<source src="/content/videos/workshop2.mp4" type="video/mp4">
</video>
<div class="container h-100">
<div class="d-flex h-100 text-center align-items-center">
<div class="w-100 text-white">
<p class="subheader d-none d-md-inline">Interested in hanging out with other tech professionals</p>
<h1 class="header my-md-2">Sign up to attend one of our meetups</h1>
</div>
</div>
</div>
</header>
<section id="meetups">
<div class="container">
<div class="row section-header d-flex justify-content-center">
<div class="col-lg-6 text-center">
<h1>2024</h1>
<h2>Tech Meetup Schedule</h2>
</div>
</div>
<div class="row d-flex ">
{% for event in site.data.meetups %}
<div class="col-lg-12 py-4 border border-purple">
<p class="text-primary">{{event.date}}</p>
<h1 class="text-primary">{{event.title}}</h1>
<p class="text-muted">{{event.description}}</p>
<a href={{event.signuplink}}><u>Click to sign up</u></a>
</div>
{% endfor %}
</div>
</div>
</section>