{% extends "public_base.html" %} {% block title %}{{ post.title }} — {{ SPLENT_APP }}{% endblock %} {% block hero %} {{ render_block('hero', eyebrow=_('Blog'), 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 %}

← {{ _('Back to blog') }}

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