blob: 566715248a8062e3e6e6d7f0c615be51e23e8192 (
plain) (
tree)
|
|
<!DOCTYPE html>
<html>
<head>
<title>Converse Index page</title>
</head>
<body>
<h1>Welcome to Converse</h1>
<ul>
{% for thread in threads -%}
<li>{{ thread.title }} (posted at {{ thread.posted }})</li>
{%- endfor %}
</ul>
</body>
</html>
|