-
Notifications
You must be signed in to change notification settings - Fork 1
/
events.html
58 lines (54 loc) · 1.79 KB
/
events.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
---
layout: default
title: Events
subtitle: Keep up with all of our events!
permalink: /events/
---
<div id="meetings">
<div class="container">
<div class="row centered">
<div class="col-lg-8 col-lg-offset-2">
<h2>Weekly Meetings</h2>
</div>
</div>
<div class="row centered">
<br>
<br>
<div class="covid-banner col-12 mx-auto">
<h4>Due to the COVID pandemic, all of our events will be hosted online.</h4>
<h5> Our Zoom link for all general meetings: <a href="https://northeastern.zoom.us/j/92684943016" target="_blank">https://northeastern.zoom.us/j/92684943016</a></h5>
<h5>Meeting ID: 926 8494 3016</h5>
</div>
<!-- <div class="col-md-4 col-sm-4">
<h4><i class="fa fa-calendar-o"></i>Every Tuesday</h4>
</div>
<div class="col-md-4 col-sm-4">
<h4><i class="fa fa-clock-o"></i>6:00pm - 7:00pm</h4>
</div>
<div class="col-md-4 col-sm-4">
<h4><i class="fa fa-map-marker"></i>102 West Village G</h4>
</div> -->
</div>
</div>
</div>
<div id="sched">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<ul class="dates">
{% for event in site.data.events limit:5 %}
<li>
<span class="date">{{ event.date | date: "%B" | truncate: 3, ""}}<strong>{{ event.date | date: "%-d" }}</strong></span>
<h3><a href='{{ event.url }}' target="_blank">{{ event.title }}</a></h3>
<p class="event-date">{{ event.date }} @ {{ event.time }}<span class="event-location">{{ event.location }}</span></p>
<p>{{ event.description }}</p>
</li>
{% endfor %}
</ul>
</div>
</div>
</div>
</div>
<script>
var events = {{ site.data.events | jsonify }};
</script>