| layout | page |
|---|---|
| title | 分类 |
| permalink | /categories/ |
| description | 按分类浏览文章。 |
{% assign categories = site.categories | sort %}
{% for category in categories %}
{% endfor %}
-
{% for post in category[1] %}
-
{{ post.title }}{{ post.date | date: "%Y-%m-%d" }}
{{ post.excerpt | strip_html | truncate: 64 }}
{% endfor %}