oliverdavies.uk/source/talks.html.twig

30 lines
1 KiB
Twig
Raw Normal View History

2017-10-27 19:21:16 +00:00
---
layout: page
title: Talks
meta:
description: 'Information about previous and upcoming talks that Oliver has presented at conferences and user groups'
use: [talks]
---
{% block content %}
2018-05-28 23:33:00 +00:00
<p>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 <a href="/contact" class="link">get in touch</a>.</p>
2017-10-27 19:21:16 +00:00
2018-05-28 23:33:00 +00:00
<div>
<h2>Upcoming Talks</h2>
2018-05-28 23:33:00 +00:00
{% set upcoming_talks = getUpcomingTalks(data.talks, site.events) %}
{% if not upcoming_talks.empty %}
{% include "talks-table" with { talks: upcoming_talks, upcoming: true } %}
{% else %}
<p>Nothing scheduled at the moment.</p>
{% endif %}
</div>
2018-05-09 22:24:08 +00:00
2018-05-28 23:33:00 +00:00
<div>
<h2>Last 5 Talks</h2>
2018-05-09 22:24:08 +00:00
2018-05-28 23:33:00 +00:00
{% include "talks-table" with { talks: getPastTalks(data.talks, site.events)|slice(0,5) } %}
2018-05-09 22:24:08 +00:00
2018-05-28 23:33:00 +00:00
<p>All previous talks can be found in the <a href="/talks/archive" class="link">talks archive</a>.</p>
</div>
2017-10-27 19:21:16 +00:00
{% endblock %}