{% extends "base.html" %} {% block head_title %}{{ post.title }} – {{ app_name }}{% endblock %} {% block description %}{{ post.excerpt }}{% endblock %} {% block og_type %}article{% endblock %} {% block og_image_meta %}{% if post.coverImage and post.coverImage.url %} {% elif logo_url %} {% endif %}{% endblock %} {% block twitter_image_meta %}{% if post.coverImage and post.coverImage.url %} {% elif logo_url %} {% endif %}{% endblock %} {% block content %}

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

{{ post.excerpt }}

{{content | 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 %}
{{ _("Comments") }}

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

{{comment.comment}}

{% endblock %}