oliverdavies.uk/source/_partials/talks/talk.html.twig

22 lines
636 B
Twig
Raw Normal View History

2019-02-13 07:01:40 +00:00
<article>
2020-02-06 02:03:57 +00:00
<h3 class="text-lg leading-snug text-gray-800">
2019-03-25 23:24:31 +00:00
<a href="{{ talk.url }}" class="text-inherit" tabindex="-1">
{{ talk.title }}
</a>
2019-03-21 09:38:09 +00:00
</h3>
2019-02-13 07:01:40 +00:00
2019-07-10 23:15:56 +00:00
<div class="mt-1">
2019-03-04 00:05:04 +00:00
<p>{{ talk.description }}</p>
2019-02-13 07:01:40 +00:00
</div>
{% if talk.url %}
<footer class="mt-1">
2019-03-21 09:38:09 +00:00
<a href="{{ talk.url }}" class="text-sm text-gray-600 hover:text-gray-900 focus:text-gray-900 no-underline hover:underline">
2019-02-13 07:01:40 +00:00
Find out more
<span class="visuallyhidden">about {{ talk.title }}</span>
2019-03-03 23:32:12 +00:00
&rarr;
2019-02-13 07:01:40 +00:00
</a>
</footer>
{% endif %}
</article>