oliverdavies.uk/source/talks.html.twig

42 lines
1,003 B
Twig
Raw Normal View History

2015-04-11 07:27:27 +00:00
---
layout: default
title: Talks
meta:
description: 'Information about previous and upcoming talks that Oliver has presented at conferences and user groups'
2015-04-10 22:21:29 +00:00
use:
- talks
2015-04-11 07:27:27 +00:00
---
<h1>Talks</h1>
2015-04-18 00:30:43 +00:00
<p>I regularly speak at conferences and user groups about a range of subjects relating to Drupal, PHP and web development. If you would like to me to speak at your group or conference, please <a href="/contact">get in touch</a>.</p>
2015-04-11 07:51:43 +00:00
{% set now = 'now'|date('U') %}
2015-04-13 21:30:38 +00:00
{% set talks = page.talks|reverse %}
2015-04-11 07:51:43 +00:00
2015-04-11 08:44:55 +00:00
{% set found = false %}
2015-04-13 21:30:38 +00:00
{% for talk in talks if talk.date >= now %}
2015-04-11 08:44:55 +00:00
{% if loop.first %}
2015-04-11 18:49:47 +00:00
{% set found = true %}
2015-04-11 08:44:55 +00:00
<h2>Upcoming Talks</h2>
<dl>
{% endif %}
2015-04-11 07:27:27 +00:00
2015-04-11 08:44:55 +00:00
{% include 'talk-listing-item' %}
{% endfor %}
{% if found %}
</dl>
{% endif %}
{% set found = false %}
2015-04-13 21:30:38 +00:00
{% for talk in talks if talk.date < now %}
2015-04-11 08:44:55 +00:00
{% if loop.first %}
2015-04-11 10:58:23 +00:00
{% set found = true %}
2015-04-11 08:44:55 +00:00
<h2>Previous Talks</h2>
<dl>
{% endif %}
{% include 'talk-listing-item' %}
{% endfor %}
{% if found %}
</dl>
2015-04-10 22:25:52 +00:00
{% endif %}