Navigation

    {% for item in site.data.navigation %}
  1. {% if page.url contains item.subdir %} {{item.name}} {% else %} {{item.name}} {% endif %} {% if page.url contains item.subdir %}
      {% for subitem in item.subtoc %}
    1. {{ subitem.name }}
    2. {% if page.url contains subitem.link %}
        {% for topic in subitem.subtoc %}
      1. {{ topic.name }}
      2. {% endfor %}
      {% endif %} {% endfor %}
    {% endif %}
  2. {% endfor %}