---
---
  [
  {% for item in site.data.sidenavItems %}
    {% for itemInner in item.child %}
      {% if itemInner.child == null %}
      {
        "label": "{{ itemInner.label | escape }}",
        "link": "{{ itemInner.link | escape }}",
        "tags": "{{ itemInner.tags | escape }}",
        "location": "{{ item.label | escape }}"
      }{% if itemInner.isLast != true %},{% endif %}
      {% else %}
      {% for itemInnerMost in itemInner.child %}
      {
        "label": "{{ itemInnerMost.label | escape }}",
        "link": "{{ itemInnerMost.link | escape }}",
        "tags": "{{ itemInnerMost.tags | escape }}",
        "location": "{{ itemInner.label | escape }}"
      } {% if itemInnerMost.isLast != true %},{% endif %}
      {% endfor %}
      {% endif %}
    {% endfor %}

  {% endfor %}
  ]
