This repository has been archived on 2024-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
old-scribeengine/scribeengine/templates/blog/index.mako
2010-01-18 22:16:46 +02:00

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