{% extends "base.html" %} {% block title %}{{ post.title }} - Blog{% endblock %} {% block meta_description %}{{ post.content.value[:160] }}{% endblock %} {% block content %}

{{ post.title }}

{{ post.author_id[0]|upper }} {{ post.author_id }} {{ post.created_at.strftime('%B %d, %Y') }} {% if post.published %} Published {% else %} Draft {% endif %}
{{ post.content.value|nl2br }}
{% endblock %}