{% extends "touchtechnology/news/base.html" %} {% load i18n tz %} {% load common %} {% block news_content %}

{% block page_title %}{% if node %}{{ node.title }}{% else %}{% trans "Latest News" %}{% endif %}{% if category %} - {{ category.title }}{% endif %}{% endblock %}

{% for article in object_list %}

{{ article.headline }}

{{ article.published|date }} @ {{ article.published|date:"G:i e" }}

{{ article.abstract|linebreaks }}

{% block read_more %}{% trans "Read more" %}{% endblock %}

{% endfor %} {% block pagination %} {% pagination %} {% endblock %} {% endblock %}