{% extends "layout.html" %} {% load static %} {% load text_filters %} {% load posts %} {% load comments %} {% block title %} {{ post.title }}{% if post.subtitle %} — {{ post.subtitle }}{% endif %} — {{ post_type_config.name }} {{ block.super }} {% endblock %} {% block body_class %} {% if "body_class" in post.data %}{{ post.data.body_class }}{% endif %} {% endblock %} {% block body_styles %} {% if "background_color" in post.data %}background-color: {{ post.data.background_color }};{% endif %} {% if "color" in post.data %}color: {{ post.data.color }};{% endif %} {% endblock %} {% block meta %} {% endblock %} {% block body %}
{% block headline %}
{% include "posts/full/headlines/headline-cover.html" %}
{% endblock %} {% block post %}
{% show_post post %}
{% endblock %} {% block post_footer %}
{% include "common/post_footer.html" %}
{% endblock %} {% block comments %}
{% include "comments/comment-list.html" %}
{% endblock %} {% block post_related %}
{% include "common/post_related.html" %}
{% endblock %}
{% endblock %}