1
我創建了一個新的頁面無法正常工作,有一個for循環顯示的帖子列表中,但作爲expcted 傑奇for循環如預期
,這裏是我的代碼不能正常工作:
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<ul>
{% for post in site.posts %}
<li>
<a href="{{ post.url }}">{{ post.title }}</a>
{{ post.excerpt }}
</li>
{% endfor %}
</ul>
</body>
</html>
它的工作,謝謝。 –