## -*- coding: utf-8 -*- <%namespace name="helper" file="post_helper.tmpl"/> <%namespace name="disqus" file="disqus_helper.tmpl"/> <%inherit file="base.tmpl"/> <%block name="content"> <div class="postbox"> <div class="title"> ${helper.html_title()} <small> ${messages("Posted")}: ${post.formatted_date(date_format)} ${helper.html_translations(post)} ${helper.html_tags(post)} </small> </div> ${post.text()} ${helper.html_pager(post)} % if not post.meta('nocomments'): ${disqus.html_disqus(post.permalink(absolute=True), post.title(), post.base_path)} % endif </div> </%block>