{% extends theme("base.html") %} {% import theme("_forms.html") as forms %} {% block page_header %}
{% endblock %} {% block content %}
{% if content.body %} {% if content.content_type == 'Quote' %}
{{ content.body|safe() }}

{{ content.author }}

{% else %}

{{ content.body|safe() }}

{% endif %} {% endif %} {% if content.embed_code %} {{ content.embed_code|safe() }} {% endif %} {% if content.image_url %}

{% endif %}

{{ content.created_at.strftime('%H:%M %Y-%m-%d') }}


Comments

{% if content.comments %} {% for comment in content.comments %}

{{ comment.body }}

{{ comment.author }} on {{ comment.created_at.strftime('%H:%M %Y-%m-%d') }}

{{ comment.text }} {% endfor %} {% endif %}

Add a comment

{{ forms.render(form) }}
{% endblock %}