{# Single blog post detail page. Receives: - post : app.models.entities.Post - active_nav : str "home" ``post.body_html_cached`` is the bleach-sanitized output of the Markdown pipeline (allowlisted tags/attrs/protocols only), so rendering with ``| safe`` does not reintroduce XSS risk. Same rationale as ``public/about.html``. #} {% extends "public/base.html" %} {% block title %}{{ post.title }} — Chicken Babies R Us{% endblock %} {% block meta_description %}{{ post.title }} — a post from Chicken Babies R Us.{% endblock %} {% block content %}

{{ post.title }}

{% if post.published_at %} {% endif %}
{{ post.body_html_cached | safe }}

← Back to all posts

{% endblock %}