Voyage/templates/index.html

23 lines
528 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 %}
<li>{{ thread.title }}</li>
{% endfor %}
</ul>
</main>
</body>
</html>