Skip to content

Latest commit

 

History

History
30 lines (27 loc) · 970 Bytes

201-categories.markdown

File metadata and controls

30 lines (27 loc) · 970 Bytes
layout title permalink
page
类别
/categories/

{% for category in site.categories %}

{{ category[0] | join: "/" }}  {% endfor %}

{% for category in site.categories %}

{{ category[0] | join: "/" }} [{{ category[1].size }}]

    {% assign pages_list = category[1] %}
    {% for node in pages_list %}
        {% if node.title != null %}
        {% if group == null or group == node.group %}
            {% if page.url == node.url %}
            <li class="active"><a href="{{ BASE_PATH }}{{node.url}}" class="active">{{node.title}}</a></li>
            {% else %}
            <li><a href="{{ BASE_PATH }}{{node.url}}">{{node.title}}</a></li>
            {% endif %}
        {% endif %}
        {% endif %}
    {% endfor %}
    
{% endfor %} {% assign pages_list = nil %} {% assign group = nil %}