| 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 %}
{% endfor %}
-
{% for post in year.items %}
-
{{ post.title }}{{ post.date | date: "%m-%d" }}
{{ post.excerpt | strip_html | truncate: 68 }}
{% endfor %}