23 lines
560 B
HTML
23 lines
560 B
HTML
<!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 %}
|
|
<li><a href="./{{ thread.id }}">{{ thread.title }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</main>
|
|
</body>
|
|
</html>
|