# Pastebin ybQ0rzec ## -*- 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'):

${title|h}

%endif <%def name="html_translations(post)"> % if len(translations) > 1:

${messages("Also available in:")}

% for langname in translations.keys(): % if langname != lang and post.is_translation_available(langname):

${messages("LANGUAGE", langname)}

% endif % endfor
% endif <%def name="html_sourcelink()"> % if show_sourcelink:

${messages("Source")}

% endif <%def name="html_post_header()">
${html_title()} %if post.description():

${post.description()}

%endif
% if not post.meta('nocomments') and site_has_comments:

${comments.comment_link(post.permalink(), post._base_path)} % endif ${html_sourcelink()} % if post.meta('link'):

${messages("Original site")}

% endif

${post.reading_time} min to read

${html_translations(post)}