我有一个非常noob的问题。我想创建一个页面,其中将显示某些类别的所有帖子。我明白,我应该写一些{%include%}标签,但我无法理解。 我有:
{% for post in site.posts %}
<!-- check if post comes from one of page categories-->
{% assign PostAndPageCategories= page.categories | concat: post.categories %}
{% capture all_cat %}{{ PostAndPageCategories | join: "," }}{% endcapture %}
{% capture unique_cat %}{{ PostAndPageCategories |uniq | join: "," }}{% endcapture %}
{% if all_cat != unique_cat %}
<!-- END check if post comes from one of page categories-->
{% include archive-single.html %}
{% endif %}
{% endfor %}
显然,这段代码显示了带有teasers的帖子,但是我需要显示整个帖子。
我应该如何更改第{% include archive-single.html %}
行?
答案 0 :(得分:0)
我发现{{post.content}}
代替{% include archive-single.html %}
对我来说没问题。