-
Notifications
You must be signed in to change notification settings - Fork 255
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cannot add upcoming talks #56
Comments
Edit: I found that we can solve the problem by setting another front matter - publishDate
...
buildFuture = true
...
---
title:
date:
publishDate: 2020-02-20
...
---
...
...
talksPaginate = 5
talksGroupByDate = "2006"
... That's it. |
This works! Thank you 👍 Quick question: Why is the
|
We are using ‘date’ front matter for sorting list in the home page, terms page, section page. So if we use the ‘date’ for talks page, it will show up at the top of the home page unnecessarily. But you can use ‘date’ if you don’t mind the sorting problem |
That makes sense. I was actually going to ask about those showing up on the home page. I will make the fix so they don't show. Thank you for explaining it to me. |
Oh, you don’t want the talks showing up on the home page? Actually it was not displayed on the home page but I deleted that part. I’ll rollback that code. Or you can do PR . This is the related commit 9c21e92 |
That would be nice. Essentially this is a blog. So only posts should show up on the home page. Anything else should show in its own page. |
Yes I misunderstood some words. |
I think you meant this commit: 9c21e92 Maybe what would be better is to have it behind a flag. This would make it dynamic and you don't need to filter it. So putting in a config, which by default does not show in home page, but when set to true will show in home page. It can be any page. |
..or it can be a field that takes an array. i.e
This way if someone doesn't want to show talks they just set it to:
and your logic would be something like:
What do you think? |
I’ll think about it more. |
|
No add new issue . It’s better |
Basically, what it means is ability to add talks that will be happening in the future i.e are upcoming.
Usually speakers would get selected and will have a talk in a few months. This will allow them to list those talks up on the page too.
Thank you!
The text was updated successfully, but these errors were encountered: