about summary refs log tree commit diff
path: root/templates/index.html
blob: 566715248a8062e3e6e6d7f0c615be51e23e8192 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!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>