## -*- 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:

${post.title()}

${messages("Posted")}:
Tags:  %if post.tags: %for tag in post.tags: ${tag} %endfor %endif
${post.text(teaser_only=index_teasers)} % if not post.meta('nocomments'): ${comments.comment_link(post.permalink(), post.base_path)} % endif
% endfor ${helper.html_pager()} ${comments.comment_link_script()} ${helper.mathjax_script(posts)}