{% extends 'main.html' %} {% block head %} {% if metadata.gallery %} {% endif %} {% endblock %} {% block content %}

{{ metadata.title}}

{{ metadata.date | human_date }}


{{post|safe}}

{{comments | length}} Comment{% if comments | length != 1 %}s{% endif %}

{% for comment in comments %}
{{ comment[0] }} - {{ comment[2] | human_date }}

{{ comment[1] }}

{% endfor %}

Leave a comment

{% if request.args.get('comment') is none %}
{% else %}

Thank you! Your comment will appear once it is approved

{% endif %}
{% endblock %}