Talks page is a listing page of links(video, ppt, event, …). UI is similar to the archive page. Follow the below steps to make it.
- Make a file at root/content/talks/_index.md. - 1 2 3 4 5 6- --- title: "Talks" date: 2019-12-30T11:14:14+09:00 description: Talks Page titleWrap: wrap # wrap, nowrap ---
- Next, make some files under the - talksfolder you have created in step 1. If you want to make other link post, then make another file under the- talksfolder.- root/content/talks/myLinks.md - 1 2 3 4 5 6 7 8 9 10 11 12- --- title: "My Awesome links" date: 2019-12-31T00:04:50+09:00 publishDate: 2019-12-31 description: tags: - series: - categories: - ---
- Finally, make a menu at your root/config/_default/menus.en.toml file - 1 2 3 4 5- [[main]] identifier = "talks" name = "talks" url = "talks" weight = 6- And we are good to go. 
- Additionally, if you want to use a future date for the talks page, you need more things to do. - add config variable named buildFutureat root/config/_default/config.toml
 - 1 2 3- ... buildFuture = true ...- add publishDate front matter to your md file at root/content/talks/myLinks.md
 - 1 2 3 4 5 6 7- --- title: date: publishDate: 2020-02-20 ... --- ...
- add config variable named