www.duckland.org/themes/blogtxt/templates/index.tmpl
2015-06-09 22:50:31 -05:00

25 lines
1 KiB
Cheetah

## -*- coding: utf-8 -*-
<%namespace name="helper" file="index_helper.tmpl"/>
<%namespace name="comments" file="comments_helper.tmpl"/>
<%inherit file="base.tmpl"/>
<%block name="content">
% for post in posts:
<div class="post hfeed">
<h2 class="entry-title"><a href="${post.permalink()}">${post.title()}</a></h2>
<div class="entry-content">
${post.text(lang,index_teasers)}
</div>
<div class="entry-meta">
<span class="meta-sep">|</span>
<span class="entry-date">${messages("Posted:")} <time class="published" datetime="${post.date.isoformat()}">${post.formatted_date(date_format)}</time></span>
<span class="meta-sep">|</span>
% if not post.meta('nocomments'):
${comments.comment_link(post.permalink(), post.base_path)}
% endif
</div>
</div>
% endfor
${helper.html_pager()}
${comments.comment_link_script()}
${helper.mathjax_script(posts)}
</%block>