2015-05-12 14:47:18 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width">
|
|
|
|
<link href="styles.css" rel="stylesheet" type="text/css" />
|
2015-05-12 18:18:31 +00:00
|
|
|
<title>{{ title }}</title>
|
2015-05-12 14:47:18 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>{{ thread.title }}</h1>
|
|
|
|
{% for post in thread.posts %}
|
2015-05-12 18:32:08 +00:00
|
|
|
<h3><a href={{ "../../user/" + post.user.name |url_replacer + ".html" }}>{{ post.user.name }}</a> - {{ post.timestamp | fromunixtime }}</h3>
|
2015-05-12 14:47:18 +00:00
|
|
|
<p>{{ post.message | tohtml }}</p>
|
|
|
|
{% for attachment in post.attachments %}
|
|
|
|
--<br>
|
|
|
|
<a href="{{ attachment.url.replace('{{baseurl}}', 'static') }}">{{ attachment.name }}</a>
|
|
|
|
{% endfor %}
|
|
|
|
<hr>
|
|
|
|
{% endfor %}
|
|
|
|
</body>
|
|
|
|
</html>
|