{% for category in site.categories %} {% if category[0] == 'gettingstarted' %}
  • Getting Started
    • {% for post in category[1] %}
    • {{post.title}}
    • {% endfor %}
    {% endif %} {% endfor %} {% for category in site.categories %} {% if category[0] == 'installation' %}
  • Installation
    • {% for post in category[1] %}
    • {{post.title}}
    • {% endfor %}
    {% endif %} {% endfor %} {% for category in site.categories %} {% if category[0] == 'tutorial' %}
  • Tutorial
    • {% for post in category[1] %}
    • {{post.title}}
    • {% endfor %}
    {% endif %} {% endfor %} {% for category in site.categories %} {% if category[0] == 'development' %}
  • Development
    • {% for post in category[1] %}
    • {{post.title}}
    • {% endfor %}
    {% endif %} {% endfor %} {% for category in site.categories %} {% if category[0] == 'howto' %}
  • How to
    • {% for post in category[1] %}
    • {{post.title}}
    • {% endfor %}
    {% endif %} {% endfor %} {% for category in site.categories %} {% if category[0] == 'api' %}
  • API
    • {% for post in category[1] %}
    • {{post.title}}
    • {% endfor %}
    {% endif %} {% endfor %}