14 lines
285 B
Twig
14 lines
285 B
Twig
{% extends 'page' %}
|
|
|
|
{% block title %}{{ page.name }}{% endblock %}
|
|
|
|
{% block content_bottom %}
|
|
<h3>Session</h3>
|
|
|
|
{% for session in data.sessions if page.name in session.speakers %}
|
|
<a href="{{ session.url }}">
|
|
{{ session.title }}
|
|
</a>
|
|
{% endfor %}
|
|
{% endblock %}
|