当我比较post.category是否就像有一个帖子那样,当我放{{post.category}}时,变量更多,它会打印出名称。如果我放入,如果site.post.category处理所有值,那就好像他不存在。问题是我希望得到当前帖子来比较该类别。我想按类别列出帖子。
<div class="posts">
{% for post in site.posts %}
{% if post.category == Eventos %}
<hr>
<div class="post">
<h1 class="post-title">
<a href="{{ site.url }}{{post.url}}">
{{ post.title }}
</a>
</h1>
<span class="post-date">{{ post.date | date_to_string }} / {{ post.category }}</span> {{ post.excerpt }}
<h6><a href="{{ site.url }}{{post.url}}">Leia mais...</a></h6>
</div>
{% endif %}
{% endfor %}
</div>
答案 0 :(得分:0)
尝试类别!
{% if post.categories | contains: 'Eventos' %}