{% extends "blog_core/base.html" %} {% block title %}{{ article.title }} · {{ blog.name }}{% endblock %} {% block content %}

{{ blog.name }}

{% if is_preview %}
Preview — not publicly listed
{% endif %}

{{ article.title }}

{{ article.publish_at|date:"Y-m-d H:i" }} {% if article.author %} · {{ article.author.get_username }}{% endif %} · {{ article.get_state_display }}

{% if article.teaser %}

{{ article.teaser }}

{% endif %}
{{ body_html }}
{% endblock %}