Skip to content

Latest commit

 

History

History
32 lines (30 loc) · 973 Bytes

File metadata and controls

32 lines (30 loc) · 973 Bytes
layout page
permalink /categories/
title 分类/Categories
order 1

目录:

{% for category in site.categories %}
{% capture category_name %}{{ category | first }}{% endcapture %}

{{ category_name }}

{% endfor %}
<h3 class="category-head">分类:</h3>

{% for category in site.categories %}

{% capture category_name %}{{ category | first }}{% endcapture %}

<h4 class="category-head">{{ category_name }}</h4>
<a name="{{ category_name | slugize }}"></a>
{% for post in site.categories[category_name] %}
<article class="archive-item">
  <h5><a href="{{ site.baseurl }}{{ post.url }}">{{post.title}}</a></h5>
</article>
{% endfor %}
{% endfor %}