blob: e841668bfe41c3b7b9ae0624d8d0db2935cac077 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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>
|