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

${post.title}

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

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

% endfor <%include file="/pagination.mako"/>