我可以拥有一个在其文件名中使用日期的Jekyll集合吗?

时间:2018-03-06 03:18:49

标签: jekyll

我需要构建一个Jekyll集合 - events - 它有一个标题,一个日期和一些其他的前端变量:

---
title: Tournament
date: 2018-03-09 00:00:00
date_end: 2018-03-01 20:00:00
description: A big tournament is coming.
---

我的收藏品配置为:

collections:
  events:
    output: true

我希望这些文件存在于_events文件夹中,如

- 2018-03-09-tournament.md

并以_site输出,如:

- /event/2018-03-09-tournament/index.html

我已在permalink的{​​{1}}属性上尝试了很多组合,但如果文件名中包含日期,则无法呈现我的事件。

这可能吗?我错过了什么?

1 个答案:

答案 0 :(得分:1)

您可以像这样配置permalink

collections:
  events:
    output: true
    future: true
    permalink: "/event/:year-:month-:day-:name/index:output_ext"