加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.html 1.52 KB
一键复制 编辑 原始数据 按行查看 历史
TMaize 提交于 2017-03-06 21:18 . init
---
layout: default
css: [common.css,header.css,footer.css,totop.css,articlelist.css]
js: [common.js,header.js,totop.js]
---
<div id="articlelist">
{% for post in site.posts %}
{% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
{% capture next_year %}{{ post.previous.date | date: "%Y" }}{% endcapture %}
{% if forloop.first %}
<div class="type-head">{{ this_year }}</div>
<ul>
{% endif %}
{% if this_year == next_year %}
<li>
<time>{{ post.date | date: "%Y/%m/%d" }}&nbsp;</time>
<a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
<span>&nbsp;
{% for cat in post.categories %}
<a href="{{ site.categoriesurl }}/#{{ cat }}">{{ cat }}</a>
{% endfor %}
</span>
</li>
{% else %}
{% if forloop.last %}
<li>
<time>{{ post.date | date: "%Y/%m/%d" }}&nbsp;</time>
<a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
<span>&nbsp;
{% for cat in post.categories %}
<a href="{{ site.categoriesurl }}/#{{ cat }}">{{ cat }}</a>
{% endfor %}
</span>
</li>
</ul>
{% else %}
<li>
<time>{{ post.date | date: "%Y/%m/%d" }}&nbsp;</time>
<a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
<span>&nbsp;
{% for cat in post.categories %}
<a href="{{ site.categoriesurl }}/#{{ cat }}">{{ cat }}</a>
{% endfor %}
</span>
</li>
</ul>
<div class="type-head">{{ next_year }}</div>
<ul>
{% endif %}
{% endif %}
{% endfor %}
</div>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化