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