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
985 B
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 %}
<div class="flex flex-row-reverse -mx-2 mb-12">
<div class="flex-1 mx-2">
<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-02-13 08:45:57 +00:00
{% if talk.image %}
<div class="w-1/4 mx-2">
<img
src="/assets/images/talks/{{ talk.image }}"
alt="{{ talk.title }}"
class="border border-solid p-1 bg-white"
>
</div>
{% endif %}
</div>
{% endfor %}
2017-10-27 19:21:16 +00:00
{% endblock %}