{% for link in site.nav %} {% assign link_handle = link.url | remove: '#' %} {% for article in site.documentation %} {% if article.handle == link_handle %}

{{ article.title }}

{{ article.content }} {% if link.childlinks %} {% for childlink in link.childlinks %} {% assign childlink_handle = childlink.url | remove: '#' %} {% for article in site.documentation %} {% if article.handle == childlink_handle %}

{{ article.title }}

{{ article.content }}
{% endif %} {% endfor %} {% endfor %} {% endif %}
{% endif %} {% endfor %} {% endfor %}