{% extends "base.html" %} {% load wagtailimages_tags navigation_tags i18n %} {% block head-extra %} {% endblock head-extra %} {% block content %} {% image self.image fill-1920x600 as hero_img %}

{{ page.title }}

{% if page.is_open %} {% trans "This location is currently open" %} {% else %} {% trans "Sorry, this location is currently closed" %} {% endif %}

{% if page.introduction %}

{{ page.introduction }}

{% endif %} {% if page.operating_hours %}

{% trans "Opening hours" %}

{% for hours in page.operating_hours %} {% endfor %}
{% endif %}

{% trans "Address" %}

{{ page.address|linebreaks }}
{{ page.body }}
{% endblock content %}