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
2015-07-09 13:52:59 +01:00

47 lines
1.1 KiB
HTML

---
layout: default
title: Talks
meta:
description: 'Information about previous and upcoming talks that Oliver has presented at conferences and user groups'
use:
- talks
---
{% block body_classes 'page--talks page--talks__list' %}
{% block content %}
<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>
{% set now = 'now'|date('U') %}
{% set talks = data.talks %}
{% set found = false %}
{% for talk in talks if talk.date >= now %}
{% if loop.first %}
{% set found = true %}
<h2>Upcoming Talks</h2>
<dl>
{% endif %}
{% include 'talk-listing-item' %}
{% endfor %}
{% if found %}
</dl>
{% endif %}
{% set found = false %}
{% for talk in talks if talk.date < now %}
{% if loop.first %}
{% set found = true %}
<h2>Previous Talks</h2>
<dl>
{% endif %}
{% include 'talk-listing-item' %}
{% endfor %}
{% if found %}
</dl>
{% endif %}
{% endblock %}