neilChenXie / neilChenXie.github.io

Blog, include Management, Apps, Linux, Java, BigData, Everything ^_^
1 stars 0 forks source link

Jekyll Category Page #15

Closed neilChenXie closed 7 years ago

neilChenXie commented 7 years ago
{% for category in site.categories %}
    <li><a name="{{ category | first }}">{{ category | first }}</a>
    <ul>
        {% for post in category.last %}
        <li><a href="{{ post.url }}">{{ post.title }}</a></li>
        {% endfor %}
    </ul>
    </li>
{% endfor %}
neilChenXie commented 7 years ago

recorded with gist