Mayx's Home Page
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
417 B

  1. ---
  2. layout: default
  3. title: Archives
  4. ---
  5. # Archives
  6. ---
  7. {% assign posts_by_year = site.posts | group_by_exp: "post", "post.date | date: '%Y'" %}
  8. {% for year in posts_by_year %}
  9. ## {{ year.name }} (共 {{ year.items | size }} 篇)
  10. {% for post in year.items %}
  11. - {{ post.date | date: "%Y/%m/%d" }} - [{{ post.title }}{% if post.layout == "encrypt" %} [加密]{% endif %}]({{ post.url }})
  12. {% endfor %}
  13. {% endfor %}