我如何尝试获取MyBlogContent类别中的所有帖子:
{% for post in site.category.MyBlogContent %}
<li>
<a href="{{ post.url }}">{{ post.title }}</a>
</li>
{% endfor %}
答案 0 :(得分:0)
site.category
密钥不存在。您必须查看site.categories
,如下所示:
{% for post in site.categories.MyBlogContent %}