加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.html 857 Bytes
一键复制 编辑 原始数据 按行查看 历史
terrason 提交于 2023-02-16 18:44 . 文档修饰;修复链接;修复编码
---
layout: default
title: Home
---
{% include intro.html %}
<section class="post-list">
<div class="container">
{% for post in site.posts %}
{% unless post.next %}
<h2 class="category-title">{{ 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 class="category-title">{{ post.date | date: '%Y' }}</h2>
{% endif %}
{% endunless %}
<article class="post-item">
<span class="post-meta date-label">{{ post.date | date: "%b %d" }}</span>
<div class="article-title"><a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></div>
</article>
{% endfor %}
</div>
</section>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化