Voyage/templates/index.html

23 lines
560 B
HTML
Raw Normal View History

2019-12-06 18:13:43 -05:00
<!DOCTYPE html>
<html lang="en">
<head>
<title>Voyage</title>
<link rel="stylesheet" type="text/css" href="/static/voyage.css">
<script type="text/javascript" src="/static/voyage.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=0.8">
<meta name="description" content="A quest archive viewer.">
</head>
<body>
<header>
<h1>Voyage</h1>
</header>
<main>
<ul>
{% for thread in threads %}
2019-12-10 18:19:01 -05:00
<li><a href="./{{ thread.id }}">{{ thread.title }}</a></li>
2019-12-06 18:13:43 -05:00
{% endfor %}
</ul>
</main>
</body>
</html>