-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtalks.html
32 lines (28 loc) · 817 Bytes
/
talks.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
---
layout: default
title: "Talks - Filip Procházka"
permalink: /talks
meta:
description: "I like to listen to myself talk, so I occasionally show up at some local meetup to give talks."
og:
type: website
sitemap:
priority: 0.1
---
<div class="talks">
<div class="row">
<div class="col-lg-10 offset-lg-1">
<h2>Talks</h2>
{% assign talks = site.talks | sort: 'date' | reverse %}
{% assign grouped_talks = talks | group_by_exp: "item", "item.date | date: '%Y'" %}
{% for group in grouped_talks %}
<br>
<h3>{{ group.name }}</h3>
<ul class="talks-list">
{% for item in group.items %}
<li><a href="{{ item.url }}">{{ item.talk.title }}</a></li>{% endfor %}
</ul>
{% endfor %}
</div>
</div>
</div>