Jekyll Post.Url不工作

时间:2017-04-07 18:40:57

标签: jekyll

Jekyll的新手。我整理了一个列表视图的帖子类别(评论)..循环工作正常,吐出图像,发布等..但当我尝试添加链接{{p.url}}它没有工作..建议?

{% for reviews in site.categories.review %}
    <tr>
      <th>{{reviews.title}}</th>
      <th></th>
    </tr>
      <td style="width: 33%;"><img style="width: 200px;" src="{{ site.baseurl }}/images/posts/{{reviews.banner_image}}"></td>
      <td><strong>{{reviews.category}}</strong>
          <ul>
            <a href="{{ post_url }}"><li>Key Point #1</li></a>
            <li>Key Point #1</li>
            <li>Key Point #1</li>
            <li>Key Point #1</li>
            <li>{{ reviews.tags }}</li>
          </ul>
          <div class="clear"><input type="submit" value="Learn More..." name="Learn More..." class="button"></div>
          </td>
{% endfor %}
</table>

2 个答案:

答案 0 :(得分:0)

尝试使用{{ reviews.url }}

答案 1 :(得分:0)

而不是:{{post_url}} 大卫推荐:{{reviews.url}}

有效。