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/_partials/talk_listing_item.twig
2015-08-25 22:56:49 +01:00

27 lines
598 B
Twig

<li>
<strong>
{% if talk.fuzzy_date %}
{{ talk.date|date('F') }}
{% else %}
{{ talk.date|date('jS F') }}
{% endif %}
</strong> -
{% if talk.location_link %}
<a href="{{ talk.location_link }}">
{% endif %}
{{ talk.location }}
{% if talk.location_link %}
</a>
{% endif %}
{{ talk.location_suffix }}
-
{% if talk.title_link %}
<a href="{{ talk.title_link }}">
{% endif %}
{{ talk.title }}
{% if talk.title_link %}
</a>
{% endif %}
{{ talk.title_suffix }}
</li>