ggdworkshop/templates/invitedspeakers.html

32 lines
1.0 KiB
HTML
Raw Permalink Normal View History

{% extends "layout.html" %}
{% block content %}
<div class="row">
<h1><strong>Invited Speakers</strong></h1>
<!--<h2>Scientific Committee</h2>-->
<ul class="comite">
2024-07-29 03:57:51 +00:00
{% 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>
<h3 style="margin-left:20px;">Homage to Ricardo Mañé:</h3>
<ul class="comite">
<li><a href="https://www.dpmms.cam.ac.uk/~gpp24/" target="_blank">Gabriel Paternain - University of Cambridge</a></li>
<li><a href="http://w3.impa.br/~enrique/" target="_blank">Enrique Pujals - Instituto de Matematica Pura e Aplicada (IMPA)</a></li>
</ul>
</div>
{% endblock %}