我创建了一个目录 ../category/{{page.title}} 使页面对应于各个类别。我正在尝试使用图像点击事件来循环这些页面。类似于 bootstrap 中的 carousal 但仅在 jekyll 液体中。这是代码
{% for item in site.categories %}
<a href="item.url">
<img src ="My image location">
</a>
{% endfor %}
点击它会重定向到我的最后一个特定类别的帖子。