website/static/root/slides/index.html
Noratrieb 4f136e662f
Some checks failed
test / test (push) Has been cancelled
talk recording
2026-01-20 21:34:07 +01:00

30 lines
792 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="/static/theme.css" />
<title>Slides</title>
</head>
<body>
<div class="main-content">
<div class="main-content-inner">
<h1>slides</h1>
<p>slides from talks that i have given</p>
{% for talk in talks %}
<div>
<h2>{{ talk.date }} - {{ talk.name }}</h2>
<p>{{ talk.location }}</p>
<p>
<a href="{{ talk.dir_name }}">slides</a>
</p>
<p>
<a href="{{ talk.recording }}">recording</a>
</p>
</div>
{% endfor %}
</div>
</div>
</body>
</html>