如何设置Jekyll集合存档URL?

时间:2015-10-18 09:11:05

标签: url jekyll

我使用Jekyll生成带有博客和自定义集合命名照片的网站。我的自定义集合项具有以下URL:0.0.0.0:4000/photos/photo-name。

collections:
  photos:
    output: true
    permalink: /photos/:path/

在_site目录中,它们生成为:

_site/
  photos/
    photo-name/
      index.html
    other-photo-name/
      index.html

现在,我希望将照片存档为URL,如下所示:0.0.0.0:4000 / photos /。

那么有没有办法在_site / photos /目录中生成index.html?非常感谢提前!

1 个答案:

答案 0 :(得分:2)

如果您想为照片制作索引页面,只需在前面的内容中创建一个photos.html页面permalink : /photos/,它就会生成一个_site/photos/index.html页面。