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/_layouts/helpers.html.twig

13 lines
322 B
Twig
Raw Normal View History

2019-12-27 19:48:16 +00:00
{% macro talkEventName(event) %}
{% if event.url %}
<a href="{{ event.url }}">{{ event.name }}</a>
{% else %}
{{ event.name }}
{% endif %}
{% endmacro %}
{% macro talkEventLocation(event) %}
{{ event.location ? 'in ' ~ event.location }}
2020-03-14 21:09:54 +00:00
{{ event.remote ? ' (Remote)' }}
2019-11-01 18:55:09 +00:00
{% endmacro %}