2 % if c.post_list.count() > 0:
3 <div class="post-list">
5 % for p in c.post_list:
6 <li class="post" id="post_${p._id}">
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"/>
20 <div class="clear"></div>