2015-04-10 23:21:29 +01:00
---
layout: default
title: Talks
2015-04-11 08:27:27 +01:00
meta:
2015-06-14 03:27:41 +01:00
description: 'Information about previous and upcoming talks that Oliver has presented at conferences and user groups'
2015-04-25 14:49:33 +01:00
use:
2015-06-14 03:27:41 +01:00
- talks
2015-04-11 08:27:27 +01:00
---
2015-07-09 13:52:59 +01:00
{% block body_classes 'page--talks page--talks__list' %}
2015-06-18 17:50:37 +01:00
{% block content %}
2015-04-11 08:27:27 +01:00
< h1 > Talks< / h1 >
2015-05-03 18:23:44 +01: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-18 01:30:43 +01:00
2015-04-11 08:51:43 +01:00
{% set now = 'now'|date('U') %}
2015-04-25 15:03:15 +01:00
{% set talks = data.talks %}
2015-04-11 08:51:43 +01:00
2015-04-11 09:44:55 +01:00
{% set found = false %}
2015-04-13 22:30:38 +01:00
{% for talk in talks if talk.date >= now %}
2015-06-14 03:27:41 +01:00
{% if loop.first %}
{% set found = true %}
< h2 > Upcoming Talks< / h2 >
< dl >
{% endif %}
2015-04-11 08:27:27 +01:00
2015-06-14 03:27:41 +01:00
{% include 'talk-listing-item' %}
2015-04-11 09:44:55 +01:00
{% endfor %}
{% if found %}
2015-06-14 03:27:41 +01:00
< / dl >
2015-04-11 09:44:55 +01:00
{% endif %}
{% set found = false %}
2015-04-13 22:30:38 +01:00
{% for talk in talks if talk.date < now % }
2015-06-14 03:27:41 +01:00
{% if loop.first %}
{% set found = true %}
< h2 > Previous Talks< / h2 >
< dl >
{% endif %}
2015-04-11 09:44:55 +01:00
2015-06-14 03:27:41 +01:00
{% include 'talk-listing-item' %}
2015-04-11 09:44:55 +01:00
{% endfor %}
{% if found %}
2015-06-14 03:27:41 +01:00
< / dl >
2015-05-03 18:23:44 +01:00
{% endif %}
2015-06-18 17:50:37 +01:00
{% endblock %}