%inherit file="/base.mako"/>
<%include file="/flash.mako"/>
<%include file="/pagination.mako"/>
% for post in c.posts:
${h.literal(h.teaser(post.body))}
Posted by ${post.user.nick} on ${post.created.strftime('%B %d, %Y')}
% if c.current_user and c.current_user.id == post.user.id and c.current_user.has_permission(u'Edit My Posts'):
[Edit]
% endif
Read more
% if len(post.comments) == 0:
% elif len(post.comments) == 1:
% else:
% endif
% endfor
<%include file="/pagination.mako"/>