html Jekyll Archives按日期分组

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html Jekyll Archives按日期分组相关的知识,希望对你有一定的参考价值。

<h2>Archives</h2>
<ul>
  {% for post in site.posts %}

    {% unless post.next %}
      <h3>{{ post.date | date: '%Y' }}</h3>
    {% else %}
      {% capture year %}{{ post.date | date: '%Y' }}{% endcapture %}
      {% capture nyear %}{{ post.next.date | date: '%Y' }}{% endcapture %}
      {% if year != nyear %}
        <h3>{{ post.date | date: '%Y' }}</h3>
      {% endif %}
    {% endunless %}

    <li>{{ post.date | date:"%b" }} <a href="{{ post.url }}">{{ post.title }}</a></li>
  {% endfor %}
</ul>

以上是关于html Jekyll Archives按日期分组的主要内容,如果未能解决你的问题,请参考以下文章

Jekyll/Liquid 模板:如何按年份对博客文章进行分组?

html [Jekyll日期格式] Jekyll中的德国日期#jekyll

html Jekyll Casts - 日期格式

html 通过Jekyll中的替换进行本地化日期

如何调整 Jekyll 发布顺序?

iOS开发 服务器请求出来的数据按日期重新分组