## -*- 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">
${parent.extra_head()}
% if post.meta('keywords'):
% endif
%if post.description():
%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)}
%block>
<%block name="content">
${messages("Comments")}
${comments.comment_form(post.permalink(absolute=True)[:-5], post.title(), post._base_path)}