{% extends "base.html" %} {% block description %} {{ post.excerpt }} {% endblock %} {% block content %}

{% block title %}{{ post.title }}{% endblock %}

{{ post.excerpt }}

{{post.contentInMarkdown | markdown}}

{{_("Leave your comment here:")}}

{{ form.hidden_tag() }}

{{ form.author_name(placeholder=form.author_name.label.text) }}

{{ form.comment(placeholder=form.comment.label.text) }}

{{ form.submit }}
{% if comment_sent %}

{{_("Your comment has been sent for moderation")}}

{% endif %} {% for comment in post.comments %} {% endfor %}

{{comment.author}} {{_("said")}} {{comment.time_delta}}:

{{comment.comment}}

{% endblock %}