Skip to content

Latest commit

 

History

History
31 lines (29 loc) · 795 Bytes

File metadata and controls

31 lines (29 loc) · 795 Bytes
layout page
title 归档
permalink /archive/
description 按时间查看所有文章。

按年份整理所有文章

适合集中浏览某一阶段写过的内容。

{% assign posts_by_year = site.posts | group_by_exp: "post", "post.date | date: '%Y'" %} {% for year in posts_by_year %}

{{ year.name }}

    {% for post in year.items %}
  • {{ post.title }}

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

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