{% extends "blogit/base.html" %} {% load cms_tags %} {% block content %}

{{ post.title }}

{% if post.subtitle %}

{{ post.subtitle }}

{% endif %} {% if post.featured_image %}

{{ post.title }}

{% endif %}

{{ post.date_published }}

{% if post.category %}

Category: {{ post.category }}

{% endif %} {% include "blogit/includes/tags.html" with tags=post.get_tags %}
{% render_placeholder post.content %} {% include "blogit/includes/author.html" with author=post.author %}
{% with prev_post=post.get_previous next_post=post.get_next %} {% endwith %}
{% endblock %}