{% extends 'newscenter/base.html' %} {% load thumbnail %} {% block title %}{{ article.title }}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block appcontent %}

{{ article.title }}

{{ article.teaser }}

{% if article.images.all %}
{% endif %}

{{ article.release_date|date:"F j, Y P" }}

{% if article.location %}
Location: {{ article.location }}
{% endif %}
{{ article.body|safe }}
{% include "newscenter/includes/add-this.html" %} {% if article.categories.all %}
Categor{{ article.categories.count|pluralize:"y,ies" }}:
{% endif %}
{% if article.get_next_published %}

Next: {{ article.get_next_published.title }}

{% endif %}

Currently Reading: {{ article.title }}

{% if article.get_previous_published %}

Previous: {{ article.get_previous_published.title }}

{% endif %}
{% endblock %}