14 lines
321 B
HTML
14 lines
321 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Converse Index page</title>
|
|
</head>
|
|
<body>
|
|
<h1>Welcome to Converse</h1>
|
|
<ul>
|
|
{% for thread in threads -%}
|
|
<li><a href="/thread/{{ thread.id }}">{{ thread.title }}</a> (posted at {{ thread.posted }})</li>
|
|
{%- endfor %}
|
|
</ul>
|
|
</body>
|
|
</html>
|