## -*- coding: utf-8 -*- <%namespace name="helper" file="post_helper.tmpl"/> <%namespace name="pheader" file="post_header.tmpl"/> <%namespace name="comments" file="comments_helper.tmpl"/> <%inherit file="base.tmpl"/> <%block name="extra_head"> ${parent.extra_head()} % if post.meta('keywords'): % endif %if post.description(): %endif %if post.prev_post: %endif %if post.next_post: %endif % if post.is_draft: % endif ${helper.open_graph_metadata(post)} ${helper.twitter_card_information(post)} ${helper.meta_translations(post)} <%block name="content">
${pheader.html_post_header()}
${post.text()}
% if not post.meta('nocomments') and site_has_comments:

${messages("Comments")}

${comments.comment_form(post.permalink(absolute=True), post.title(), post._base_path)}
% endif ${helper.mathjax_script(post)}
${comments.comment_link_script()}