加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
archive2.html 573 Bytes
一键复制 编辑 原始数据 按行查看 历史
summit 提交于 2017-05-02 20:59 . modify archive
---
layout: default
title: Archive
---
<section id="archive">
<h2>本年文章</h2>
{% for post in site.posts %}
{% unless post.next %}
<ul class="this">
{% else %}
{% capture year %}{{ post.date | date: '%Y' }}{% endcapture %}
{% capture nyear %}{{ post.next.date | date: '%Y' }}{% endcapture %}
{% if year != nyear %}
</ul>
<h2>{{ post.date | date: '%Y' }}</h2>
<ul class="past">
{% endif %}
{% endunless %}
<li><time>{{ post.date | date:"%m月%d日" }}</time><a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</section>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化