Skip to content

Latest commit

 

History

History
64 lines (58 loc) · 1.71 KB

File metadata and controls

64 lines (58 loc) · 1.71 KB
layout title slug search_omit
default
索引
date
true

时间线

下面是按照时间归档的文章索引,方便大家查找需要的文章。

    {% for post in site.posts %}

    {% if post.next %}
    {% capture year %}{{ post.date | date: '%Y' }}{% endcapture %} {% capture nyear %}{{ post.next.date | date: '%Y' }}{% endcapture %} {% capture month %}{{ post.date | date: '%m' }}{% endcapture %} {% capture nmonth %}{{ post.next.date | date: '%m' }}{% endcapture %} {% endif %}

    {% if forloop.first %}

  • {{ post.date | date: '%Y' }}年

    • {{ post.date | date: '%m' }}月

        {% else %} {% if year != nyear %}
  • {{ post.date | date: '%Y' }}年

    • {{ post.date | date: '%m' }}月

        {% elsif month != nmonth %}
    • {{ post.date | date: '%m' }}月

  • {% endif %} {% endfor %}