{% assign cats = site.docs | where:"index","true" | sort:"order" %} {% for cat in cats %} {% assign cat_path = cat.url | downcase | split: '/' %} {% assign page_path = page.url | downcase | split: '/' %} {% assign cat_name = cat.title | default: "EMPTY" %} {% if cat_name != "EMPTY" %} {% assign url = cat.url | remove: "index.html" %}
  • {{ cat_name }}
  • {% endif %} {% endfor %}