mirror of
https://github.com/Noratrieb/website.git
synced 2026-01-14 17:05:02 +01:00
25 lines
678 B
HTML
25 lines
678 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>
|
|
<a href="{{ talk.dir_name }}">{{ talk.dir_name }}</a>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|