Spaces in /source

This commit is contained in:
Oliver Davies 2015-06-06 17:21:24 +01:00
parent 45c8708a5f
commit 6e9dd34d0f
121 changed files with 1051 additions and 1051 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 %}