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-02-13 08:45:57 +00:00
|
|
|
{% for talk in data.talks %}
|
2018-02-13 19:07:43 +00:00
|
|
|
<div class="sm:flex sm:flex-row-reverse sm:-mx-2 mb-12 sm:mb-12">
|
|
|
|
<div class="sm:flex-1 sm:mx-2">
|
2018-02-13 08:45:57 +00:00
|
|
|
<h2>
|
|
|
|
<a href="{{ talk.url }}">
|
|
|
|
{{ talk.title }}
|
|
|
|
</a>
|
|
|
|
</h2>
|
2017-10-27 19:21:16 +00:00
|
|
|
|
2018-02-13 08:45:57 +00:00
|
|
|
<div>
|
|
|
|
{{ talk.summary|markdown }}
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-10-28 11:17:25 +00:00
|
|
|
|
2018-03-31 19:46:02 +00:00
|
|
|
{% include 'talk/image.html.twig' %}
|
2018-02-13 08:45:57 +00:00
|
|
|
</div>
|
|
|
|
{% endfor %}
|
2017-10-27 19:21:16 +00:00
|
|
|
{% endblock %}
|