oliverdavies.uk/source/talks.html

57 lines
1.6 KiB
HTML
Raw Normal View History

2015-04-10 22:21:29 +00:00
---
layout: default
title: Talks
2015-04-11 07:27:27 +00:00
meta:
2015-07-15 22:45:52 +00:00
description: 'Information about previous and upcoming talks that Oliver has presented at conferences and user groups'
talks:
- title: So, what is this Drupal thing?
date: 2012-09-05
location: unified.diff
- title: Drupal LDAP module
date: 2013-07-10
location: SWDUG
- title: Test Drive Twig with Sculpin
date: 2015-07-24
location: DrupalCamp North 2015
- title: Sculpin
date: 2015-08-21
location: unified.diff
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-07-15 22:45:52 +00:00
<h1>Talks</h1>
<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:27:27 +00:00
2015-07-15 22:45:52 +00:00
{% set now = 'now'|date('U') %}
2015-07-15 22:47:30 +00:00
{% set talks = page.talks|reverse %}
2015-04-18 00:30:43 +00:00
2015-07-15 22:45:52 +00:00
{% set found = false %}
{% for talk in talks|reverse if talk.date >= now %}
{% set found = true %}
{% if loop.first %}
<h2>Upcoming Talks</h2>
<ul>
{% endif %}
2015-04-11 07:51:43 +00:00
2015-07-15 22:45:52 +00:00
{% include 'talk-listing-item' %}
{% endfor %}
{% if found %}
</ul>
{% endif %}
2015-04-11 07:27:27 +00:00
2015-07-15 22:45:52 +00:00
{% set found = false %}
{% for talk in talks if talk.date < now %}
{% set found = true %}
{% if loop.first %}
<h2>Previous Talks</h2>
<ul>
{% endif %}
2015-04-11 08:44:55 +00:00
2015-07-15 22:45:52 +00:00
{% include 'talk-listing-item' %}
{% endfor %}
{% if found %}
</ul>
{% endif %}
2015-06-18 16:50:37 +00:00
{% endblock %}