1

我创建了一个新页面,有一个 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>
4

1 回答 1

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>
于 2017-08-18T10:00:44.637 回答