2017-08-18 76 views
1

我創建了一個新的頁面無法正常工作,有一個for循環顯示的帖子列表中,但作爲expcted enter image description here傑奇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> 

回答

3

添加前端事務,以便Jekyll知道它必須處理它。

只需在文件的開頭添加破折號的兩行:

--- 
--- 
<!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> 
+0

它的工作,謝謝。 –