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

{{ newsroom }}

{% if article_list %} {% with article_list|first as article %}
{% if article.images.all %}
{% with article.images.all|first as image %} {{ image.name }} {% endwith %}
{% endif %}

{{ article.title }}

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

{% if article.location %}
Location: {{ article.location }}
{% endif %}
{{ article.body|truncatewords_html:"60"|safe }}
read the full story {% if article.categories.all %}
Categor{{ article.categories.count|pluralize:"y,ies" }}:

Posted at {{ article.release_date|time:"P" }}

{% endif %}
{% endwith %} {% else %}

There are currently no articles

{% endif %} {% endblock %} {% block appsidebar %}
{% if featured_list %}
rss-icon

Featured Releases

{% for article in featured_list|slice:":4" %}
{% if article.random_thumbnail %} {{ article.random_thumbnail.image.alt }} {% endif %}

{{ article.title }}

{{ article.teaser|truncatewords_html:"20"|safe }}

read more

{% endfor %}
{% endif %}
rss-icon

Latest Releases

{% for article in article_list|slice:":8" %}

{{ article.title }}

{% endfor %}

view all


{% endblock %}