## -*- coding: utf-8 -*- <%namespace name="helper" file="post_helper.tmpl"/> <%namespace name="pheader" file="post_header.tmpl"/> <%namespace name="comments" file="comments_helper.tmpl"/> <%namespace name="math" file="math_helper.tmpl"/> <%namespace name="ui" file="ui_helper.tmpl"/> <%inherit file="base.tmpl"/> <%block name="extra_head"> ${parent.extra_head()} % if post.meta('keywords'): % 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)} ${math.math_styles_ifpost(post)} <%block name="content">
${pheader.html_post_header()}
${post.text()}
${math.math_scripts_ifpost(post)}
<%block name="sourcelink"> % if show_sourcelink: ${ui.show_sourcelink(post.source_link())} % endif