如何使用github页面遍历jekyll集合中的图像

时间:2019-05-07 14:30:41

标签: html jekyll github-pages

我一直试图在我的Github网站上托管网络漫画,但是我不知道如何遍历jekyll集合中的图像。我已经尝试过对site.static_files进行迭代,但是当我使用{% if image.path contains "webcomic_folder" %}时,它不会显示任何内容。我该怎么做?

我当前的网络漫画代码:

---
layout: default
---
<div class="webcomic_wrapper">
{% for image in site.webcomic.files %}
  <p>Path: {{ image.path }} </p>
{% endfor %}
</div>

0 个答案:

没有答案