{% extends 'layout.html.twig' %} {% set seo_title = 'News' %} {% set body_class = 'news' %} {% block content %}

News{% if title %} | {{ title }}{% endif %}

{% for article in articles %}

{{ article.title }}

{% if is_texstyle_au() %}
{{ article.postDate|date('jS F, Y') }}
{% endif %} {% if article.gridImage %} {% endif %}
{{ article.excerpt|raw }}
{% endfor %}
{% if articles.haveToPaginate %} {% endif %}
{% endblock %} {% block callouts %} {% include '_includes/subscribe-callout.html.twig' %} {% endblock %}