This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
oliverdavies.uk-old-sculpin/source/talks.html.twig

43 lines
1,006 B
Twig
Raw Normal View History

2015-04-10 22:21:29 +00:00
---
layout: default
title: Talks
2015-04-10 22:25:52 +00:00
nav: talks
2015-04-11 07:27:27 +00:00
meta:
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:
- 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-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-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-25 13:44:39 +00:00
{% endif %}