我正在尝试使用 - Jekyll和Liquid 存档一些帖子 - 基于月和年持续时间。我的目的是这样的:
<h3> {{ month. year }} - {{month. next_year}} </h3>
...输出将是这样的:
十月2014年 - 2015年1月
我是jekyll / liquid的新手,我不太了解,尝试了以下代码,但它不起作用:
{% capture written_year %}'None'{% endcapture %}
{% capture written_next_year %}'None'{% endcapture %}
{% for post in site.posts %}
{% capture year %}{{ post.date | date: '%b.%Y' }}{% endcapture %}
{% capture next_year %}{{ post.next.date | date: '%b.%Y' }}{% endcapture %}
{% if year != written_year %}
<h3> {{ year }} - {{next_year}} </h3>
{% capture written_year %}{{ year }}{% endcapture %}
{% capture written_next_year %}'None'{% endcapture %}
{% endif %}
示例帖子:
http://prntscr.com/9cajee [持有的职位是&lt;标题&gt; ,IT用户bla bla ..是帖子标题]
欢迎阅读任何提示/文档!
提前致谢。