Introduced post types.
[TownSquare.git] / townsquare / templates / post / list-embed.mako
blobf23904cf108d9b3a33b9b359e47bd39981c7c5f0
2 % if c.post_list.count() > 0:
3 <div class="post-list">
4 <ul>
5 % for p in c.post_list:
6 <li class="post" id="post_${p._id}">
9 <%
10   c.post = p
11   if not hasattr(p, 'content_type'):
12     p.content_type = 'text'
14 % if p.content_type == 'text':
15 <%include file="li-text.mako"/>
16 % elif p.content_type == 'article':
17 <%include file="li-article.mako"/>
18 % endif
20   <div class="clear"></div>
21 </li>
22 % endfor
23 </ul>
24 </div>
25 % else:
26 No responses yet.
27 % endif