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