{% extends "public.html" %} {% load thumbnail %} {% block headtitle %}{{ homepage_settings.meta_title }}{% endblock %} {% block meta_description %}{{ homepage_settings.meta_description }}{% endblock %} {% block banner_extra %} {% if homepage_settings.banner %} {% endif %} {% endblock %} {% block banner_mobile %} {% if homepage_settings.mobile_banner %} {% endif %} {% endblock %} {% block main_content %}
{% if block_layout %} {% include block_layout.get_public_template %} {% endif %}
{% comment %}
{% if news_cat %}

Latest News

{% if news_articles %}
{% for article in news_articles %}

{{ article }}

{{ article.created|date:'jS F Y' }}

{{ article.description }} Read More

{% if forloop.counter == 2 %}
{% endif %} {% endfor %}
{% else %}

There are no articles currently

{% endif %}
{% endif %} {% if events_cat %}

Upcoming Events

{% if event_articles %} {% for article in event_articles %}

{{ article }}

{{ article.event_date_start|date:'jS F Y' }}

{{ article.description }} View Event

{% endfor %} {% else %}

There are no upcoming events.

{% endif %}
{% endif %}
{% endcomment %}
{{ homepage_settings.content|safe }}
{% endblock %}