Back to 2 spaces

This commit is contained in:
Oliver Davies 2015-05-15 21:08:41 -07:00
parent db2a31c871
commit f769eee7f4
118 changed files with 1050 additions and 1050 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 %}