Barebones styling. Very much so. Ugly.
[zzz-spline-forum.git] / splinext / forum / templates / forum / posts.mako
1 <%inherit file="/base.mako" />
2
3 <%def name="title()">${c.thread.subject} - ${c.thread.forum.name} - Forums</%def>
4
5 <div class="forum-post-container">
6     % for post in c.thread.posts:
7     <div class="forum-post">
8         <div class="author">
9             ${post.author.name}
10         </div>
11         <div class="meta">
12             <time>${post.posted_time}</time>
13         </div>
14         <div class="content">${post.content}</div>
15     </div>
16     % endfor
17 </div>