{% if page_ancestors|length > 2 %}
    {% for ancestor_page in page_ancestors %} {% if not ancestor_page.is_root %} {% if ancestor_page.depth > 2 %}
  1. {{ ancestor_page.title }}
  2. {% else %}
  3. Home
  4. {% endif %} {% endif %} {% endfor %}
  5. {{ current_page_title }}
{% endif %}