{% 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" %}
  • {{ cat_name }}
  • {% endif %} {% endfor %}