## -*- 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"> ${helper.twitter_card_information(post)} % if post.meta('keywords'): % endif <%block name="content">

${post.title()}

${post.text(lang)}
 §  % if not post.meta('nocomments') and site_has_comments: · ${comments.comment_link(post.permalink(), post.base_path)} % endif % for tag in post.tags: · ${tag} %endfor
% if not post.meta('nocomments'): ${comments.comment_form(post.permalink(absolute=True), post.title(), post.base_path)} % endif