This commit is contained in:
Oliver Davies 2015-05-02 21:43:08 +01:00
parent dd0e1fb2f7
commit eed827355e
119 changed files with 1066 additions and 1066 deletions

View file

@ -3,9 +3,9 @@ layout: default
title: Talks
nav: talks
meta:
description: 'Information about previous and upcoming talks that Oliver has presented at conferences and user groups'
description: 'Information about previous and upcoming talks that Oliver has presented at conferences and user groups'
use:
- talks
- talks
---
<h1>Talks</h1>
@ -16,28 +16,28 @@ use:
{% set found = false %}
{% for talk in talks if talk.date >= now %}
{% if loop.first %}
{% set found = true %}
<h2>Upcoming Talks</h2>
<dl>
{% endif %}
{% if loop.first %}
{% set found = true %}
<h2>Upcoming Talks</h2>
<dl>
{% endif %}
{% include 'talk-listing-item' %}
{% include 'talk-listing-item' %}
{% endfor %}
{% if found %}
</dl>
</dl>
{% endif %}
{% set found = false %}
{% for talk in talks if talk.date < now %}
{% if loop.first %}
{% set found = true %}
<h2>Previous Talks</h2>
<dl>
{% endif %}
{% if loop.first %}
{% set found = true %}
<h2>Previous Talks</h2>
<dl>
{% endif %}
{% include 'talk-listing-item' %}
{% include 'talk-listing-item' %}
{% endfor %}
{% if found %}
</dl>
</dl>
{% endif %}