5.7 In page navigation View in a new window

Example
Markup
{% set data = data|default({
  "title": "On this page",
  "pageSections": [
    {
      "text": "Section 1",
      "anchor": "#id1"
    },
    {
      "text": "Section 2",
      "anchor": "#id2"
    },
    {
      "text": "Section 3",
      "anchor": "#id3"
    },
    {
      "text": "Section 4",
      "anchor": "#id4"
    }
  ]
}) %}

<nav class="nsw-page-nav" aria-labelledby="in-page-nav">
  <h5 id="in-page-nav" class="nsw-page-nav__title">{{data.title}}</h5>
  <ul class="nsw-page-nav__list">
    {% for item in data.pageSections %}
      <li class="nsw-page-nav__list-item">
        <a href="{{item.anchor}}" class="nsw-page-nav__link">{{item.text}}</a>
      </li>
    {% endfor %}
  </ul>
</nav>