{% if events.getTotalItemCount > 0 %}
{% else %}
{% include "Global/message.html.twig" with { type: "info", message: ('Add events to your favorites by clicking the heart button'|trans), icon: "fas fa-exclamation-circle" } %}
{% endif %}
{{ knp_pagination_render(events, null, {}, {'align': 'center'}) }}
{% for event in events %}
{% include "Global/event-card.html.twig" with {event: event} %}
{% endfor %}