blog/archives.md

20 lines
417 B
Markdown
Raw Normal View History

2022-01-04 12:42:55 +00:00
---
layout: default
title: Archives
---
# Archives
---
2022-01-04 12:42:55 +00:00
{% assign posts_by_year = site.posts | group_by_exp: "post", "post.date | date: '%Y'" %}
2022-01-04 12:42:55 +00:00
{% for year in posts_by_year %}
2022-01-04 12:42:55 +00:00
## {{ year.name }} (共 {{ year.items | size }} 篇)
2022-01-04 12:42:55 +00:00
{% for post in year.items %}
- {{ post.date | date: "%Y/%m/%d" }} - [{{ post.title }}{% if post.layout == "encrypt" %} [加密]{% endif %}]({{ post.url }})
{% endfor %}
2022-01-04 12:42:55 +00:00
{% endfor %}