about summary refs log tree commit diff
path: root/templates
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@gmail.com>2018-04-08T16·02+0200
committerVincent Ambo <tazjin@gmail.com>2018-04-08T16·02+0200
commit6e56f8e729551ff14b7a72ca889b8dd38999fb2d (patch)
tree1533d6379077741191f57149a776297f8168bcdf /templates
parent7dca9183c581f803f7b456712dfed655722986e8 (diff)
feat(main/templates): Add barebones single-thread view
Diffstat (limited to 'templates')
-rw-r--r--templates/index.html2
-rw-r--r--templates/thread.html14
2 files changed, 15 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>
diff --git a/templates/thread.html b/templates/thread.html
new file mode 100644
index 000000000000..e841668bfe41
--- /dev/null
+++ b/templates/thread.html
@@ -0,0 +1,14 @@
+<!DOCTYPE html>
+<html>
+  <head>
+    <title>Converse: {{ thread.title }}</title>
+  </head>
+  <body>
+    <h1>{{ thread.title }}</h1>
+
+    <p>{{ thread.body }}<br><i>Posted at {{ thread.posted }}</i></p>
+    {% for post in posts -%}
+      <li>{{ post.body }}<br><i>Posted at {{ post.posted }}</i></p>
+    {%- endfor %}
+  </body>
+</html>