---
layout: page
title: 归档
permalink: /archive/
---
{% if site.posts.size == 0 %}
No post found
{% endif %}
{% for post in site.posts %}
{% 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 %}
-
{% if post.link %}
{% else %}
{% endif %}
{{ post.title }}
{% endfor %}