{% extends 'contents/_base.html' %} {% load i18n static %} {% load events %} {% block title %}{% trans 'Keynotes' %}{% endblock title %} {% block body_class %}keynotes-page{% endblock body_class %} {% block content %}

{% trans 'Keynotes' %}

{% get_keynote_events as keynote_events %} {% for event in keynote_events %} {% with data=event.get_static_data_for_locale %}
{{ data.speaker.name }}

{{ data.session.title }}

{% trans 'Biography' %}

{{ data.speaker.bio|linebreaks }}

{% trans 'Speech' %}

{{ data.session.description|linebreaks }}
{% if data.slido %}
{% endif %}
{% endwith %} {% endfor %} {% endblock content %}