{% extends "public_base.html" %} {% block title %}{{ post.title }} — {{ SPLENT_APP }}{% endblock %} {% block hero %} {% if preview %}
{{ _('This is a preview. Only logged in users can see this page.') }} {{ _('Back to editing') }}
{% endif %} {{ render_block('hero', eyebrow=post_section_label, title=post.title, subtitle=post.date.strftime('%d %b %Y')) }} {% endblock %} {% block content %}
{% if post.show_featured %} {% endif %} {% if post.categories %}

{% for c in post.categories %}{{ c.name }}{% endfor %}

{% endif %}
{{ post.content | safe }}
{% for hook in get_template_hooks("post.comments") %}{{ hook(post) | safe }}{% endfor %}

← {{ post_section_label }}

{% if related %} {% endif %}
{% endblock %}