{% extends "base.html" %} {% load assets l10n i18n svg %} {% block content %}

{{ page.title }}

{% if page.address %} {% svg "map-marker-alt" %} {{ page.address }} {% if page.location %} {% with long=page.location.y|unlocalize lat=page.location.x|unlocalize %} {% endwith %}
   {% trans "(Click to open a map)" %}

{% endif %} {% endif %} {% if page.phone_number %} {% svg "phone" %} {{ page.phone_number }}
{% endif %} {% if page.email %} {% svg "envelope" %} {{ page.email }} {% endif %}
{% if page.opening_hours %} {% svg "clock" %} {% trans "Opening hours" %}
{% for opening_hour in page.opening_hours %} {{ opening_hour.value.day }}: {{ opening_hour.value.hours }}
{% endfor %} {% endif %} {% if page.opening_hours_free_text %} {{ page.opening_hours_free_text|safe }} {% endif %}
{% if page.content %}
{{ page.content | safe }} {% endif %}
{% endblock content %}