oliverdavies.uk/source/_includes/talk-listing-item.html.twig

16 lines
391 B
Twig
Raw Normal View History

2015-08-25 22:35:39 +01:00
<li>
2015-08-25 23:40:50 +01:00
<strong>{% spaceless %}
2015-08-25 22:35:39 +01:00
{% if talk.fuzzy_date %}
2015-08-10 16:08:55 +01:00
{{ talk.date|date('F') }}
2015-08-25 22:35:39 +01:00
{% else %}
{{ talk.date|date('jS F') }}
2015-08-10 16:08:55 +01:00
{% endif %}
2015-09-12 08:59:49 +01:00
{% endspaceless %}</strong> - {{ talk.event.name }}
-
{% if talk.fuzzy_date %}
{{ talk.title }}
{% else %}
<a href="{{ talk.url }}">{{ talk.title }}</a>
{% endif %}
2015-08-25 22:35:39 +01:00
</li>