website/templates/slides.html
2024-01-18 21:22:08 +01:00

17 lines
No EOL
389 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Slides</title>
</head>
<body>
<h1>Slides</h1>
<p>Talks I have given with slides available:</p>
<div>
{% for talk in talks %}
<a href="{{ talk }}">{{ talk }}</a>
{% endfor %}
</div>
</body>
</html>