
Untitled
By: a guest on
May 21st, 2012 | syntax:
None | size: 2.74 KB | hits: 47 | expires: Never
{% autoescape None %}
<html>
<head>
<link rel="stylesheet" type="text/css" href="/styles/style.css">
</head>
<body bgcolor="#6E6E6E">
|
{% for _board in boards %}
<a = href="/{{ _board['id'] }}/">/{{ _board['id']}}/</a> |
{% end %}
<hr>
<center>
<br>
{{ board['desc'] }}
<br>
<br>
<form action="/{{ board['id'] }}/" method="post" enctype="multipart/form-data">
<table class="post">
<tr><td>Name</td><td><input type="text" name="name"></td></tr>
<tr><td>Picture</td><td><input type="file" name="picture"></td></tr>
<tr><td>Message</td><td><div style="width: 100%;"><textarea type="text" name="message" ></textarea><div></td></tr>
<tr><td></td><td align="left"><input type="Submit" value="Submit"></td></tr>
</table>
</form>
<hr>
<table width=100%>
{% if threads %}
{% for thread in threads %}
<tr>
<td class="post">
<a href="{{ thread['op']['picture'] }}"><img src="{{ thread['op']['thumb'] }}", width="200px", style="float:left; border-radius: 10px; padding: 5px;"/></a>
<b><font color="#5B1CFC">{{ thread['op']['name'] }}</font> | {{ thread['op']['pub_date'] }} | №{{ thread['op']['id'] }} | <a href="/thread/{{ thread['op']['thread'] }}">Открыть Тред</a></b>
<div style="margin-bottom: 10px;height:0;line-height:0;overflow:hidden;border-bottom: 1px solid #666; width:auto;"></div>
<p>{{ thread['op']['message'] }}</p>
<table>
{% for post in thread['posts'] %}
{% if post['picture'] %}
<tr>
<td class="thread">
<a href = "{{ post['picture'] }}"><img src="{{ post['thumb'] }}", width="200px", style="float:left; border-radius: 10px; padding: 5px;"></a>
<b><font color="#5B1CFC">{{ post['name'] }}</font> | {{ post['pub_date'] }} | â„–{{ post['id'] }} | <a href="/post/{{ post['id'] }}">Открыть поÑÑ‚</a></b>
<div style="margin-bottom: 10px;height:0;line-height:0;overflow:hidden;border-bottom: 1px solid #666; width:auto;"></div>
<p>{{ post['message'] }}</p>
<div class="clear"></div>
</td>
</tr>
{% else %}
<tr>
<td class="thread">
<b><font color="#5B1CFC">{{ post['name'] }}</font> | {{ post['pub_date'] }} | â„–{{ post['id'] }} | <a href="/post/{{ post['id'] }}">Открыть поÑÑ‚</a></b>
<div style="margin-bottom: 10px;height:0;line-height:0;overflow:hidden;border-bottom: 1px solid #666; width:auto;"></div>
<p>{{ post['message'] }}</p>
<div class="clear"></div>
</td>
</tr>
{% end %}
{% end %}
</table>
<tr><td><hr></td></tr>
</td>
</tr>
{% end %}
{% end %}
</table>
<h6>МикотодоÑка v1.1</h6>
</center>
</body>
</html>