mirror of
https://github.com/kaka111222333/kaka111222333.github.io.git
synced 2025-12-17 07:18:44 +08:00
35 lines
794 B
HTML
35 lines
794 B
HTML
---
|
|
layout: page
|
|
title: 归档
|
|
permalink: /archive/
|
|
---
|
|
|
|
{% if site.posts.size == 0 %}
|
|
<h2>No post found</h2>
|
|
{% endif %}
|
|
|
|
<ul class="archive">
|
|
{% for post in site.posts %}
|
|
{% unless post.next %}
|
|
<h2>{{ post.date | date: '%Y' }}</h2>
|
|
{% else %}
|
|
{% capture year %}{{ post.date | date: '%Y' }}{% endcapture %}
|
|
{% capture nyear %}{{ post.next.date | date: '%Y' }}{% endcapture %}
|
|
{% if year != nyear %}
|
|
<h2>{{ post.date | date: '%Y' }}</h2>
|
|
{% endif %}
|
|
{% endunless %}
|
|
|
|
<li>
|
|
{% if post.link %}
|
|
<a href="{{ post.link }}">
|
|
{% else %}
|
|
<a href="{{ site.baseurl }}{{ post.url }}">
|
|
{% endif %}
|
|
{{ post.title }}
|
|
</a>
|
|
<time>{{ post.date | date: "%Y-%m-%d" }}</time>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|