---
layout: default
title: "归档:Archives"
---
{% for post in site.posts limit:100 %}
{% unless post.next %}
{{ post.date | date: '%Y' }}
{% else %} {% capture year %}{{ post.date | date: '%Y' }}{% endcapture %} {% capture nyear %}{{ post.next.date | date: '%Y' }}{% endcapture %}
{% if year != nyear %}
{{ post.date | date: '%Y' }}
{% endif %}
{% endunless %}
{{ post.date | date:"%Y-%m-%d" }}»{{ post.title }}
{% endfor %}