Replaced talks.md with talks.html.twig

This commit is contained in:
Oliver Davies 2015-04-10 23:21:29 +01:00
parent 72b80c8ac9
commit 89cf4acb32
2 changed files with 15 additions and 38 deletions

15
source/talks.html.twig Normal file
View file

@ -0,0 +1,15 @@
---
layout: default
title: Talks
use:
- talks
---
<h1>Talks</h1>
<dl>
{% for talk in data.talks %}
<dt>{{ talk.date|date('F Y') }} - {{ talk.location|raw }}</dt>
<dd><a href="{{ site.url }}{{ talk.url }}">{{ talk.title }}</a></dd>
{% endfor %}
</dl>