## -*- 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="mastodon" file="mastodon.tmpl"/> <%inherit file="post.tmpl"/> <%block name="content">
%if not post.meta('hideimghdr') and post.meta('slug')=='index' and BANNER_URL:
%elif not post.meta('hideimghdr') and 'page_page' in pagekind and theme_config.get('imghdr_url'):
%else:
%endif
${pheader.html_title()} ${pheader.html_translations(post)}   %if post.meta('slug')=='index': %if EMAIL_URL: email   %endif %if XMPP_URL: XMPP   %endif %if MASTODON_URL: Mastodon   %endif %if PEERTUBE_URL: PeerTube   %endif %if RSS_URL: RSS   %endif %endif
${post.text()}
%if site_has_comments and enable_comments and not post.meta('nocomments'):

${messages("Comments")}

${comments.comment_form(post.permalink(absolute=True), post.title(), post.base_path)}
%endif ${math.math_scripts_ifpost(post)}