我需要构建一个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}}属性上尝试了很多组合,但如果文件名中包含日期,则无法呈现我的事件。
这可能吗?我错过了什么?
答案 0 :(得分:1)
您可以像这样配置permalink:
collections:
events:
output: true
future: true
permalink: "/event/:year-:month-:day-:name/index:output_ext"