{% extends "public_base.html" %} {% block title %}Events — {{ SPLENT_APP }}{% endblock %} {% block hero %} {{ render_block('hero', eyebrow=_('Programme'), title=_('Events'), subtitle=_('Talks, workshops and competitions.')) }} {% endblock %} {% block content %}
{% for e in events %} {% if e.image %}{% endif %} {{ e.kind }}

{{ e.title }}

{% if e.summary %}

{{ e.summary }}

{% endif %} {% if e.room or e.starts_at %}

{{ e.room }}{% if e.starts_at %} · {{ e.starts_at.strftime('%d %b %H:%M') }}{% endif %}

{% endif %}
{% else %}

{{ _('No events yet.') }}

{% endfor %}
{% endblock %}