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.md

1.4 KiB
Raw Blame History

layout title meta use redirect
default Talks
description
Information about previous and upcoming talks that Oliver has presented at conferences and user groups
talks
posts
speaking/

{% block content %}

Talks

I regularly speak at conferences and user groups about a range of subjects including Drupal, Sculpin and Git. If you would like to me to speak at your group or conference, please get in touch.

There is also information about events that Ive attended and spoken at on my Lanyrd and Joind.in profiles.

{% set upcoming_events = [] %} {% set past_events = [] %}

{% for date in site.events.dates %} {% if date.date >= 'today'|date('Y-m-d') %} {% set upcoming_events = upcoming_events|merge([{ date: date, event: site.events.events[date.event] }]) %} {% else %} {% set past_events = past_events|merge([{ date: date, event: site.events.events[date.event] }]) %} {% endif %} {% endfor %}

{% if upcoming_events is not empty %}

Upcoming Talks

{% include 'talks-table' with { events: upcoming_events, upcoming: true } %} {% endif %}

Last 5 Talks

{% include 'talks-table' with { events: past_events|reverse|slice(0,5) } %}

You can view more talks in the talks archive. {% endblock %}