{% extends 'base.html' %} {% block title %}{{ post.title }} | Eternity Project{% endblock %} {% block content %}
{{ post.category }}

{{ post.title }}

{{ post.excerpt }}

WRITTEN BY {{ post.real_name or post.username }}{% if post.updated_at != post.created_at %} / UPDATED {{ post.updated_at[:10] }}{% endif %}
{% if post.image_filename %}{% endif %}
{% for kind, content in blocks %}{% if kind == 'text' %}
{{ content }}
{% else %}
{% if content.caption %}
{{ content.caption }}
{% endif %}
{% endif %}{% endfor %}
{% if current_user and current_user.id == post.author_id %}Edit post{% endif %}
{% endblock %}