{% extends "interior.html" %} {% block title %}{{ object.name }} by {{ object.author }}{% endblock title %} {% block content %}

{{ object.name }}

{% if object.author %}

By: {{ object.author }}

{% endif %} {% if object.category %}

Category: {{ object.category }}

{% endif %} {% if object.published_at %}

Published: {{ object.published_at|date:"m/d/Y h:i a" }}

{% endif %}

{{ object.content|safe }}

{% endblock content %}