{% assign current = page.url | downcase | split: '/' %}
{{page.category}}
{% assign cats = site.docs | where:"category",page.category | sort:"order" %}
{% for cat in cats %}
{% assign cat_name = cat.title | default: "EMPTY" %}
{% assign cat_parent = cat.parent | default: "EMPTY" %}
{% unless cat.url contains "index" %}
{% if cat_name != "EMPTY" %}
{% if cat.marker == true %}
-
{% assign children = site.docs | where:"parent",cat.title | sort:"order" %}
{% for child in children %}
- {{ child.title }}
{% endfor %}
{% endif %}
{% if cat.marker != true and cat_parent == "EMPTY" %}
-
{{ cat_name }}
{% endif %}
{% endif %}
{% endunless %}
{% endfor %}