{% if post and post.featured_image %}
{% endif %}
{% block extra_css %}{% endblock %}
{% block header %}
{% block page_title %}{{ post.title if post else title }}{% endblock %}
{% if post %}
{% if post.date_created %} {{ post.date_created | format_date }} • {% endif %} {% if post.category %} {{ post.category.title() }} • {% endif %} {% if post.reading_time %} {{ post.reading_time }} {% else %} {{ post.content_html | reading_time }} {% endif %}
{% endif %} {% endblock %}
{% if post %}
← Voltar ao Menu
{% endif %}
{% block content %} {{ content | safe if content else post.content_html | safe }} {% endblock %}
{% if post and post.tags %}
{% for tag in post.tags %}
#{{ tag }}
{% endfor %}
{% endif %} {% block extra_js %}{% endblock %}