Academic - Upcoming talk not displaying #2029
-
Hi, Any ideas, as this seems to make the 'Upcoming' part a bit redundant! Thanks, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Your problem is related to Hugo defaults. By default Hugo won't build pages with a date set to the future. Link to the docs: https://gohugo.io/getting-started/usage/#draft-future-and-expired-content |
Beta Was this translation helpful? Give feedback.
Your problem is related to Hugo defaults. By default Hugo won't build pages with a date set to the future.
You can change this behaviour by adding
buildFuture = true
to./config/_default/config.toml
. Or if you don't want to change the default, pass buildFuture as a flag when building your site:hugo --buildFuture
orhugo server --buildFuture
.Link to the docs: https://gohugo.io/getting-started/usage/#draft-future-and-expired-content