{% for block in page.content %}
{% include_block block with block_id=block.id %}
{% endfor %}
{% if page.map_title %}
{{ page.map_title }}
{% endif %}
{% if page.category_list_title %}
{{ page.category_list_title }}
{% endif %}
{% for category, features in features_by_category %}
{% endfor %}
{% if page.content_after %}
{% for block in page.content_after %}
{% include_block block with block_id=block.id %}
{% endfor %}
{% endif %}
{% if page.content_footer %}
{% for block in page.content_footer %}
{% include_block block with block_id=block.id %}
{% endfor %}
{% endif%}
{% endblock %}