## -*- coding: utf-8 -*- <%namespace name="helper" file="post_helper.tmpl"/> <%namespace name="comments" file="comments_helper.tmpl"/> <%inherit file="base.tmpl"/> <%block name="extra_head"> ${helper.twitter_card_information(post)} % if post.meta('keywords'): % endif <%block name="content">
${helper.html_title()}
${messages("Posted")}: % if not post.meta('password'): [${messages("Source")}] % endif
%if post.tags: ${messages("Tags")}:  %for tag in post.tags: ${tag} %endfor
%endif ${helper.html_translations(post)}
${post.text()} ${helper.html_pager(post)} % if not post.meta('nocomments'): ${comments.comment_form(post.permalink(absolute=True), post.title(), post.base_path)} % endif ${helper.mathjax_script(post)}