{% set current_day = namespace(value="") %}
{% for s in sessions %}
{% set day = s.created_at.strftime('%A, %b %d, %Y') %}
{% if day != current_day.value %}
{% set current_day.value = day %}
{{ day }}
{% endif %}
{% include "fragments/session_card.html" %}
{% include "fragments/notification_timeline.html" %}
{% endfor %}