Jekyll和Liquid - 过滤列表中的冗余条目

时间:2014-10-25 10:01:27

标签: arrays redundancy

我想生成一个由帖子中的变量排序的帖子列表,没有多余的条目。

YAML:

---
time: 15 minutes
---

液体:

{% for post in site.posts %}
    {% capture currentTime %}{{ post.time }}{% endcapture %}
    {% if currentTime %}
        <div class="sublist-italic">{{ currentTime }}</div>
    {% endif %}
    {% if post.category == 'recipe' %}  
        <li><a href="{{ post.url }}">{{ post.title }}</a></li>            
    {% endif %}          
{% endfor %}

结果:

enter image description here

如何将post变量的所有值都放在数组中,过滤重复项并分配相应的帖子标题?

感谢您的帮助!

0 个答案:

没有答案