{% for category in site.categories %} {% if category[0] == '入门' %}
  • 入门
    • {% for post in category[1] %}
    • {{post.title}}
    • {% endfor %}
    {% endif %} {% endfor %} {% for category in site.categories %} {% if category[0] == '安装' %}
  • 安装
    • {% for post in category[1] %}
    • {{post.title}}
    • {% endfor %}
    {% endif %} {% endfor %} {% for category in site.categories %} {% if category[0] == '教程' %}
  • 教程
    • {% for post in category[1] %}
    • {{post.title}}
    • {% endfor %}
    {% endif %} {% endfor %} {% for category in site.categories %} {% if category[0] == '开发' %}
  • 开发
    • {% for post in category[1] %}
    • {{post.title}}
    • {% endfor %}
    {% endif %} {% endfor %} {% for category in site.categories %} {% if category[0] == '如何' %}
  • 如何
    • {% 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 %}