{{ page.title }}
{% import 'translations.html' as translations with context %}
{{ translations.translations_for(page) }}
{% if page.photo_image %}
{% endif %}
{{ page.content }}
{% if page.photo_gallery %}
{% import "photos_macros.html" as photos_macros %}
{% for title, gallery in page.photo_gallery %}
{{ photos_macros.gallery(title, gallery, 'Default caption') }}
{% endfor %}
{% endif %}
{% endblock %}