surfaces2018/templates/invitedspeakers.html

24 lines
664 B
HTML
Raw Normal View History

{% extends "layout.html" %}
{% block content %}
<div class="row">
<h1><strong>Invited Speakers</strong></h1>
<!--<h2>Scientific Committee</h2>-->
<ul class="comite">
{% for speaker in speakers %}
{% set speakertxt = "%s %s - %s"|format(speaker.nombre,speaker.apellido,speaker.afiliacion) %}
<li>
{% if speaker.web %}
<a href="{{speaker.web}}" target="_blank">
{{speakertxt}}
</a>
{% else %}
{{speakertxt}}
{% endif %}
</li>
{% endfor %}
</ul>
</div>
{% endblock %}