• Getting Started
    • {% for page in site.pages %} {% if page.categories contains 'gettingstarted' %}
    • {{page.title}}
    • {% endif %} {% endfor %}
  • Installation
    • {% for page in site.pages %} {% if page.categories contains 'install' %}
    • {{page.title}}
    • {% endif %} {% endfor %}
  • How to
    • {% for page in site.pages %} {% if page.categories contains 'howto' %}
    • {{page.title}}
    • {% endif %} {% endfor %}
  • Tutorial
    • {% for page in site.pages %} {% if page.categories contains 'tutorial' %}
    • {{page.title}}
    • {% endif %} {% endfor %}
  • Development
    • {% for page in site.pages %} {% if page.categories contains 'development' %}
    • {{page.title}}
    • {% endif %} {% endfor %}