Skip to content

Latest commit

 

History

History
26 lines (25 loc) · 668 Bytes

File metadata and controls

26 lines (25 loc) · 668 Bytes
layout page
title 分类
permalink /categories/
description 按分类浏览文章。
{% assign categories = site.categories | sort %} {% for category in categories %}

{{ category[0] }} ({{ category[1].size }})

    {% for post in category[1] %}
  • {{ post.title }}

    {{ post.excerpt | strip_html | truncate: 64 }}

    {{ post.date | date: "%Y-%m-%d" }}
  • {% endfor %}
{% endfor %}