{% extends "base.html" %} {% load short_codes %} {% block title %}{% firstof post.title "Untitled" %} by {{ post.user.username }}{% endblock %} {% block nav %} {% include "_nav.html" with page="post_detail" %} {% endblock %} {% block header %}{% endblock %} {% block head %}{% endblock %} {% block content %}
Latest posts by {{ post.user.username }} {% if post.status != "deleted" %} {% include "blog/_content.html" with post=post %} {% endif %}
{% endblock %} {% block footer %}{% endblock %}