5 lines
158 B
Twig
5 lines
158 B
Twig
{% macro talkEventLocation(eventData, event) %}
|
|
{{ eventData.location ? 'in ' ~ eventData.location }}
|
|
{{ event.online ? ' (online)' }}
|
|
{% endmacro %}
|