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

35 lines
1.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-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>
2018-03-31 19:42:40 +00:00
{% if talk.speakerdeck.id %}
2018-02-13 19:07:43 +00:00
<div class="hidden sm:block sm:w-1/5 md:w-1/4 sm:mx-2">
2018-02-13 08:45:57 +00:00
<img
2018-03-31 19:42:40 +00:00
src="https://speakerd.s3.amazonaws.com/presentations/{{ talk.speakerdeck.id }}/slide_0.jpg"
2018-02-13 08:45:57 +00:00
alt="{{ talk.title }}"
class="border border-solid p-1 bg-white"
>
</div>
{% endif %}
</div>
{% endfor %}
2017-10-27 19:21:16 +00:00
{% endblock %}