## -*- coding: utf-8 -*-
<%namespace name="helper" file="post_helper.tmpl"/>
<%namespace name="comments" file="comments_helper.tmpl"/>
<%def name="html_title()">
%if title and not post.meta('hidetitle'):
%endif
%def>
<%def name="html_translations(post)">
% if len(post.translated_to) > 1:
% for langname in sorted(translations):
% if langname != lang and post.is_translation_available(langname):
% endif
% endfor
% endif
%def>
<%def name="html_sourcelink()">
% if show_sourcelink:
${messages("Source")}
% endif
%def>
<%def name="html_post_header()">
${html_title()}
${html_translations(post)}
%def>