forked from speckandtech/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchive.html
25 lines (24 loc) · 938 Bytes
/
archive.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
---
layout: site_base
title: Archive of past talks
description: All the talks ever given at Speck&Tech
---
<div class="site event">
<a href="/">S&T</a> / <h1>{{ page.title }}</h1>
<section id="events" class="archive">
<p class="subtitle">
Here's the list of all the talks ever given at our events! You can find the abstracts, information about the speakers, slides (when available) and the links to photo albums and live-streaming. Enjoy 🤓
</p>
{% for post in site.posts %}
{% if post.categories contains "event" %}
<article class="{% if forloop.first %}first{% elsif forloop.last %}last{% else %}middle{% endif %}">
<div class="article-head">
<p class="date">{{ post.date | date: "%b %d, %Y" }}</p>
<h3 class="title"><a href="{{ post.url | remove_first:'/archive'}}" class="js-pjax">{{ post.title }}</a></h3>
</div>
</article>
<hr>
{% endif %}
{% endfor %}
</section>
</div>