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

23 lines
661 B
Twig
Raw Normal View History

2019-02-13 07:01:40 +00:00
<article>
<h3 class="text-lg text-black mb-1">
{% if talk.url %}
<a class="text-inherit" href="{{ talk.url }}">{{ talk.title }}</a>
{% else %}
{{ talk.title }}
{% endif %}
</h3>
<div class="text-sm text-grey-darkest">
<p>{{ talk.excerpt }}</p>
</div>
{% if talk.url %}
<footer class="mt-1">
2019-02-13 13:45:23 +00:00
<a href="{{ talk.url }}" class="text-sm text-grey-dark hover:text-grey-darkest focus:text-grey-darkest">
2019-02-13 07:01:40 +00:00
Find out more
<span class="visuallyhidden">about {{ talk.title }}</span>
</a>
</footer>
{% endif %}
</article>