-
Notifications
You must be signed in to change notification settings - Fork 22
/
presentations.html
54 lines (49 loc) · 1.67 KB
/
presentations.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
---
layout: default
title: Member Presentations
id: presentations
permalink: /presentations/
---
<div class="hero">
<div class="wrapper">
<div class="hero__content" data-animate-in="fade" data-animate-in-delay="110">
<h1 class="h1 mb-3">Member Presentations</h1>
<p class="p-lg">MERL Center members present on topics at the intersection of MERL and open source, data science or human-centered design at conferences held around the globe.</p>
</div>
</div>
<figure class="hero__pattern" data-animate-in="fade" data-animate-in-delay="150">
<img src="{{ '/assets/img/direction/merl-pattern.svg' | relative_url }}" alt="pattern" />
</figure>
</div>
<div class="wrapper my-6">
<hr class="hr-thin" />
<div class="my-6">
<h2 class="h6 mb-4">Explore Member Presentations</h2>
<div class="rte">
</div>
</div>
<hr/>
<div class="d-flex flex-justify-center">
<div class="col-12 col-md-10 col-lg-8">
<div class="my-6">
<h3 class="h6 mb-4">Upcoming Presentations</h2>
<div class="rte">
<p>We don't have any upcoming presentations scheduled. If you know of any conferences that MERL Center should present at with members, please add it our <a href="https://merlcenter.org/conferencelist/">M & E Conference Event List</a>
</div>
</div>
<div class="my-6">
<h3 class="h6 mb-4">Past Presentations</h2>
<div class="rte">
<section id="past-presentations">
{% for presentation in site.presentations reversed %}
<div>
{% include presentation.html %}
<hr class="hr-thin" />
</div>
{% endfor %}
</section>
</div>
</div>
</div>
</div>
</div>