diff options
author | Vincent Ambo <tazjin@gmail.com> | 2018-04-08T16·02+0200 |
---|---|---|
committer | Vincent Ambo <tazjin@gmail.com> | 2018-04-08T16·02+0200 |
commit | 6e56f8e729551ff14b7a72ca889b8dd38999fb2d (patch) | |
tree | 1533d6379077741191f57149a776297f8168bcdf /templates/index.html | |
parent | 7dca9183c581f803f7b456712dfed655722986e8 (diff) |
feat(main/templates): Add barebones single-thread view
Diffstat (limited to 'templates/index.html')
-rw-r--r-- | templates/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/index.html b/templates/index.html index 566715248a80..9faee49ca1f0 100644 --- a/templates/index.html +++ b/templates/index.html @@ -7,7 +7,7 @@ <h1>Welcome to Converse</h1> <ul> {% for thread in threads -%} - <li>{{ thread.title }} (posted at {{ thread.posted }})</li> + <li><a href="/thread/{{ thread.id }}">{{ thread.title }}</a> (posted at {{ thread.posted }})</li> {%- endfor %} </ul> </body> |