Last Updated: {{ page.last_modified_at | date: "%-d %B %Y" }}
{% assign place_images = site.static_files | where: "place_image", true | reverse %}
{% for image in place_images %}
{% assign end_image_index = image.path.size | minus: 22 %}
{% assign search_image = image.path | slice: 15, end_image_index %}
{% assign end_page_index = page.path.size | minus: 11 %}
{% assign search_page = page.path | slice: 8, end_page_index %}
{% if search_image == search_page %}
{% endif %}
{% endfor %}
Tags: {% assign tags = page.tags | sort %} {% for tag in tags %}{% unless forloop.first %}, {% endunless %} {% assign tag_page = site.tags | where: "slug", tag | first %} {% if tag_page %}{% endif %}{{ tag }}{% if tag_page %}{% endif %}{% endfor %}