sleek-dashboard
Version:
Premium & Free Bootstrap 4 admin dashboard template by TAFcoder.com
27 lines (25 loc) • 810 B
JSON
% 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 %}
]
[
{