{% extends "public/content.html" %} {% load url from future %} {% block headtitle %}{{ section }}{% endblock %} {% block title %}

{{ section }} ({{ monthname }})

{% endblock %} {% block content %} {% if articles %}
{% for article in articles %}

{{ article.title }}

{% if section.type == 'news' %}

{{ article.created|date:"jS M Y" }}

{% endif %} {% if section.type == 'events' %}

{% if article.event_date_start|date:"j" != article.event_date_end|date:"j" %} {{ article.event_date_start|date:"jS" }} {% endif %} {% if article.event_date_start|date:"M" != article.event_date_end|date:"M" %} {{ article.event_date_start|date:"M" }} {% endif %} {% if article.event_date_start|date:"Y" != article.event_date_end|date:"Y" %} {{ article.event_date_start|date:"Y" }} {% endif %} {% if article.event_date_end %} {% if article.event_date_start != article.event_date_end %}to{% endif %} {{ article.event_date_end|date:"jS M Y" }} {% endif %}

{% endif %}

{{ article.description }} read more..

{% endfor %}
{% else %}

No articles found.

{% endif %}

< Back to Current Articles

{% endblock %} {% block left_content %} {% if months %} {% endif %} {% endblock %}