{% macro event_attributes(event) %}
{% if event.url %}
Signup
{{ event.title}} on Meetup.com
{% endif %}
Date
{% if event.date %} {% else %} (No date found) {% endif %}
Venue
{% if event.venue %} {{ event.venue }} – {% endif %} {% if event.address %}{{ event.address }} {% else %} (No venue) {% endif %}
{% if event.content -%}
Description
{{ event.content | safe }}
{% endif %}
{% endmacro event_attributes %}