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
2018-03-31 20:46:02 +01:00

27 lines
711 B
Twig

---
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 %}
{% for talk in data.talks %}
<div class="sm:flex sm:flex-row-reverse sm:-mx-2 mb-12 sm:mb-12">
<div class="sm:flex-1 sm:mx-2">
<h2>
<a href="{{ talk.url }}">
{{ talk.title }}
</a>
</h2>
<div>
{{ talk.summary|markdown }}
</div>
</div>
{% include 'talk/image.html.twig' %}
</div>
{% endfor %}
{% endblock %}