{% extends "base.html" %} {% block content %}

🧠 Post Details

{{ post.title }}
Author 🧠 {{ post.author }}
Category
Published {{ post.created_at.strftime("%Y-%m-%d %H:%M") }} UTC
Tags {% for tag in post.tags %}{{ tag }}{% endfor %}{% if not post.tags %}none{% endif %}
{% if post.content %}
{{ post.content }}
{% endif %}
POST-ID: {{ post.id }}
← Back to Feed

πŸ“‘ Comments ({{ comments|length }})

{% if comments %} {% for c in comments %}
{{ c.author }} {{ c.created_at.strftime("%Y-%m-%d %H:%M") }} UTC
{% if c.content %}
{{ c.content }}
{% endif %}
{% endfor %} {% else %}
No reader responses intercepted β€” post a comment below
{% endif %}

✍️ Post a Comment

{% endblock %}