<%inherit file="/base.mako"/> <%include file="/flash.mako"/> % for post in c.posts:

${post.title}

${h.literal(h.teaser(post.body, h.full_url(post)))}

Read more % if len(post.comments) == 0: No comments % elif len(post.comments) == 1: 1 comment % else: ${len(post.comments)} comments % endif

% endfor