22 lines
935 B
Mako
22 lines
935 B
Mako
<%inherit file="/base.mako"/>
|
|
<%include file="/flash.mako"/>
|
|
% for post in c.posts:
|
|
<div class="post">
|
|
<h2 class="title"><a href="${h.full_url(post)}">${post.title}</a></h2>
|
|
<div class="entry">
|
|
${h.literal(h.teaser(post.body, h.full_url(post)))}
|
|
</div>
|
|
<p class="meta">
|
|
<span class="byline">Posted by ${post.user.nick} on ${post.created.strftime('%B %d, %Y')}</span>
|
|
<a href="${h.full_url(post)}" class="read-more">Read more</a>
|
|
% if len(post.comments) == 0:
|
|
<a href="${h.full_url(post)}#comments" class="comments">No comments</a>
|
|
% elif len(post.comments) == 1:
|
|
<a href="${h.full_url(post)}#comments" class="comments">1 comment</a>
|
|
% else:
|
|
<a href="${h.full_url(post)}#comments" class="comments">${len(post.comments)} comments</a>
|
|
% endif
|
|
</p>
|
|
</div>
|
|
% endfor
|