-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpast.html
More file actions
29 lines (27 loc) · 806 Bytes
/
past.html
File metadata and controls
29 lines (27 loc) · 806 Bytes
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
---
layout: default
title: Past Events | Transit Techies NYC
permalink: /past
---
<article class="section-purple">
<h1 class="center">Past Events</h1>
</article>
<article id="schedule">
<div class="pure-g">
<div class="pure-u-md-1-4"></div>
<div class="pure-u-1 pure-u-md-1-2">
<ul>
<h2 class="center text-purple">Previous Talks</h2>
<p class="center">A library of slides and demos from past presenters.</p>
{% assign firstsort = site.events | sort: 'eventdate' %}
{% assign sorted = firstsort | reverse %}
{% for event in sorted %}
<li>
<a href="{{ event.url }}">{{ event.title }}</a>
</li>
{% endfor %}
</ul>
</div>
</div>
</article>
{% include body-videos.html %}