Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 21st, 2012  |  syntax: None  |  size: 2.74 KB  |  hits: 47  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. {% autoescape None %}
  2. <html>
  3. <head>
  4. <link rel="stylesheet" type="text/css" href="/styles/style.css">
  5. </head>
  6. <body bgcolor="#6E6E6E">
  7. |
  8. {% for _board in boards %}
  9. <a = href="/{{ _board['id'] }}/">/{{ _board['id']}}/</a> |
  10. {% end %}
  11. <hr>
  12. <center>
  13. <br>
  14. {{ board['desc'] }}
  15. <br>
  16. <br>
  17. <form action="/{{ board['id'] }}/" method="post" enctype="multipart/form-data">
  18. <table class="post">
  19. <tr><td>Name</td><td><input type="text" name="name"></td></tr>
  20. <tr><td>Picture</td><td><input type="file" name="picture"></td></tr>
  21. <tr><td>Message</td><td><div style="width: 100%;"><textarea type="text" name="message" ></textarea><div></td></tr>
  22. <tr><td></td><td align="left"><input type="Submit" value="Submit"></td></tr>
  23. </table>
  24. </form>
  25. <hr>
  26. <table width=100%>
  27. {% if threads %}
  28.         {% for thread in threads %}
  29.                 <tr>
  30.                         <td class="post">
  31.                         <a href="{{ thread['op']['picture'] }}"><img src="{{ thread['op']['thumb'] }}", width="200px", style="float:left; border-radius: 10px; padding: 5px;"/></a>
  32.                         <b><font color="#5B1CFC">{{ thread['op']['name'] }}</font> | {{ thread['op']['pub_date'] }} | â„–{{ thread['op']['id'] }} | <a href="/thread/{{ thread['op']['thread'] }}">Открыть Тред</a></b>
  33.                         <div style="margin-bottom: 10px;height:0;line-height:0;overflow:hidden;border-bottom: 1px solid #666; width:auto;"></div>
  34.                         <p>{{ thread['op']['message'] }}</p>
  35.                         <table>
  36.                         {% for post in thread['posts'] %}
  37.                                         {% if post['picture'] %}
  38.                                                 <tr>
  39.                                                 <td class="thread">
  40.                                                 <a href = "{{ post['picture'] }}"><img src="{{ post['thumb'] }}", width="200px", style="float:left; border-radius: 10px; padding: 5px;"></a>
  41.                                                 <b><font color="#5B1CFC">{{ post['name'] }}</font> | {{ post['pub_date'] }} | â„–{{ post['id'] }} | <a href="/post/{{ post['id'] }}">Открыть пост</a></b>
  42.                                                 <div style="margin-bottom: 10px;height:0;line-height:0;overflow:hidden;border-bottom: 1px solid #666; width:auto;"></div>
  43.                                                 <p>{{ post['message'] }}</p>
  44.                                                 <div class="clear"></div>
  45.                                                 </td>
  46.                                                 </tr>
  47.                                         {% else %}
  48.                                                 <tr>
  49.                                                 <td class="thread">
  50.                                                 <b><font color="#5B1CFC">{{ post['name'] }}</font> | {{ post['pub_date'] }} | â„–{{ post['id'] }} | <a href="/post/{{ post['id'] }}">Открыть пост</a></b>
  51.                                                 <div style="margin-bottom: 10px;height:0;line-height:0;overflow:hidden;border-bottom: 1px solid #666; width:auto;"></div>
  52.                                                 <p>{{ post['message'] }}</p>
  53.                                                 <div class="clear"></div>
  54.                                                 </td>
  55.                                                 </tr>
  56.                                         {% end %}
  57.                         {% end %}
  58.                         </table>
  59.                         <tr><td><hr></td></tr>
  60.                 </td>
  61.                 </tr>
  62.         {% end %}
  63. {% end %}
  64. </table>
  65. <h6>Микотодоска v1.1</h6>
  66. </center>
  67. </body>
  68. </html>