<nav
  class="sticky top-0 pl-16 py-4 border-0 border-l-2 border-solid border-slate"
  aria-hidden="true"
>
  {% if title %}
    <a href="#top" class="block font-medium text-black no-underline">
      {{ title }}
    </a>
  {% endif %}
  <ul class="list-none mt-8 p-0 m-0 space-y-8">
    {% for item in toc %}
      <li class="m-0 p-0">
        <a class="block font-medium no-underline text-slate" href="{{ item.href }}">
          {{ item.text }}
        </a>
        {% if item.children %}
          <ul class="list-none m-0 mt-8 p-0 pl-20 space-y-8">
            {% for child in item.children %}
              <li class="m-0 p-0">
                <a class="block no-underline text-slate" href="{{ child.href }}">
                  {{ child.text }}
                </a>
              </li>
            {% endfor %}
          </ul>
        {% endif %}
      </li>
    {% endfor %}
  </ul>
</nav>
