bornhack-website/program/templates/speaker_list.html
2016-08-08 19:36:13 +02:00

17 lines
396 B
HTML

{% extends 'base.html' %}
{% block content %}
<p class="lead">
An alphabetical list of all speakers, workshop hosts and other
event anchors at BornHack 2016.
</p>
<div class="list-group">
{% for speaker in speaker_list %}
<a href="{% url 'program:speaker_detail' slug=speaker.slug %}" class="list-group-item">
{{ speaker.name }}
</a>
{% endfor %}
</div>
{% endblock content %}