about summary refs log blame commit diff
path: root/templates/index.html
blob: 9faee49ca1f03855af80a0cf1cd2b272c7a954b0 (plain) (tree)
1
2
3
4
5
6
7
8
9








                                      
                                                                                                         



                   
<!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>