Getting Started
{% assign pages = site.pages | sort: 'order' %}
{% for doc in pages %}
{% if doc.category == "getting-started" %}
- {{ doc.title }}
{% endif %}
{% endfor %}
Online Projects
{% assign pages = site.pages | sort: 'order' %}
{% for doc in pages %}
{% if doc.category == "online projects" %}
- {{ doc.title }}
{% endif %}
{% endfor %}
Offline Projects
{% assign pages = site.pages | sort: 'order' %}
{% for doc in pages %}
{% if doc.category == "offline projects" %}
- {{ doc.title }}
{% endif %}
{% endfor %}
Reference
{% assign pages = site.pages | sort: 'order' %}
{% for doc in pages %}
{% if doc.category == "reference" %}
- {{ doc.title }}
{% endif %}
{% endfor %}
Other
{% assign pages = site.pages | sort: 'order' %}
{% for doc in pages %}
{% if doc.category == "other" %}
- {{ doc.title }}
{% endif %}
{% endfor %}