blob: 9faee49ca1f03855af80a0cf1cd2b272c7a954b0 (
plain) (
tree)
|
|
<!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>
|