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