我想生成一个由帖子中的变量排序的帖子列表,没有多余的条目。
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 %}
结果:
如何将post变量的所有值都放在数组中,过滤重复项并分配相应的帖子标题?
感谢您的帮助!