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

27 lines
598 B
Twig
Raw Normal View History

2015-08-25 21:35:39 +00:00
<li>
2015-08-10 15:08:55 +00:00
<strong>
2015-08-25 21:35:39 +00:00
{% if talk.fuzzy_date %}
2015-08-10 15:08:55 +00:00
{{ talk.date|date('F') }}
2015-08-25 21:35:39 +00:00
{% else %}
{{ talk.date|date('jS F') }}
2015-08-10 15:08:55 +00:00
{% endif %}
2015-08-25 14:13:05 +00:00
</strong> -
2015-08-25 21:35:39 +00:00
{% if talk.location_link %}
<a href="{{ talk.location_link }}">
{% endif %}
{{ talk.location }}
{% if talk.location_link %}
</a>
{% endif %}
2015-08-25 21:56:49 +00:00
{{ talk.location_suffix }}
2015-08-25 21:35:39 +00:00
-
{% if talk.title_link %}
<a href="{{ talk.title_link }}">
{% endif %}
{{ talk.title }}
{% if talk.title_link %}
</a>
{% endif %}
2015-08-25 21:56:49 +00:00
{{ talk.title_suffix }}
2015-08-25 21:35:39 +00:00
</li>