Skip to content

Latest commit

 

History

History
26 lines (24 loc) · 1.25 KB

archive.md

File metadata and controls

26 lines (24 loc) · 1.25 KB
layout title
page
归档

{% for post in site.posts %} {% capture year %}{{ post.date | date: '%Y' }}{% endcapture %} {% capture month %}{{ post.date | date: '%B' }}{% endcapture %} {% capture nyear %}{{ post.next.date | date: '%Y' }}{% endcapture %} {% capture nmonth %}{{ post.next.date | date: '%B' }}{% endcapture %} {% if forloop.first %}

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

{{ post.date | date: '%B' }}

{% else %} {% if year != nyear %}

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

{{ post.date | date: '%B' }}

{% else %} {% if month != nmonth %}

{{ post.date | date: '%B' }}

{% endif %} {% endif %} {% endif %}
  • {{ post.date | date:"%m" }}月{{ post.date | date:"%d" }}日 {{ post.title }}{{ post.tags | first}}{% if post.tags[1] %}{{ post.tags[1]}}/{% endif %}{% if post.tags[2] %}{{ post.tags[2]}}/{% endif %}
  • {% endfor %}