diff options
Diffstat (limited to 'templates/thread.html')
-rw-r--r-- | templates/thread.html | 14 |
1 files changed, 14 insertions, 0 deletions
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> |