jekyll变量,如果函数

时间:2017-05-30 14:54:14

标签: jekyll liquid

为什么这样的事情不起作用? 我试图过滤今年的所有帖子

<div class="tiles">
{% for post in site.categories.articles %}

  {% capture pubyear %} {{ post.date | date: "%Y" }} {% endcapture %}

    {% if pubyear == "2014" %}
      {% include post-grid.html %}
    {% endif %}

{% endfor %}
</div><!-- /.tiles -->

2 个答案:

答案 0 :(得分:1)

问题是它正在捕获带有一些空格的输出,所以它在if条件下失败,删除那些空格并且它应该工作

<div class="tiles"> 
  {% for post in site.categories.articles %}
    {% capture pubyear %}{{ post.date | date: "%Y" }}{% endcapture %} 
    {% if pubyear == "2014" %} 
      {% include post-grid.html %} 
    {% endif %}
  {% endfor %}
</div>

答案 1 :(得分:1)

捕获公共年份是vaild但你也可以指定pubyear没有空格。

{% assign pubyear = post.date | date: "%Y" %}