1
0
مراية لـ https://github.com/Mabbs/mabbs.github.io تم المزامنة 2026-07-20 06:21:51 +00:00
- /archives.md
- /_data/other_repo_list.csv
هذا الالتزام موجود في:
mayx
2026-03-08 10:54:41 +00:00
الأصل c9dfb10733
التزام 5fd8d2fe0f
2 ملفات معدلة مع 8 إضافات و19 حذوفات

عرض الملف

@@ -5,23 +5,16 @@ title: Archives
# Archives
* * *
---
{% for post in site.posts %}
{% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
{% capture next_year %}{{ post.previous.date | date: "%Y" }}{% endcapture %}
{% if forloop.first %}
{% assign posts_by_year = site.posts | group_by_exp: "post", "post.date | date: '%Y'" %}
## {{ this_year }}
{% for year in posts_by_year %}
{% endif %}
## {{ year.name }} (共 {{ year.items | size }} 篇)
- {{ post.date | date: "%Y/%m/%d" }} - [{{ post.title }}{% if post.layout == "encrypt" %} [加密] {% endif %}]({{ post.url }})
{% for post in year.items %}
- {{ post.date | date: "%Y/%m/%d" }} - [{{ post.title }}{% if post.layout == "encrypt" %} [加密]{% endif %}]({{ post.url }})
{% endfor %}
{% if forloop.last %}
{% else %}
{% if this_year != next_year %}
## {{next_year}}
{% endif %} {% endif %} {% endfor %}
{% endfor %}