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

问题描述 投票:0回答:1

我需要构建一个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属性上尝试了很多组合,但是如果它在文件名中包含日期,则无法让我的事件呈现。

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

jekyll
1个回答
1
投票

您可以像这样配置permalink

collections:
  events:
    output: true
    future: true
    permalink: "/event/:year-:month-:day-:name/index:output_ext"
© www.soinside.com 2019 - 2024. All rights reserved.