yous / whiteglass

Minimal, responsive Jekyll theme for hackers
https://yous.github.io/whiteglass/
MIT License
732 stars 201 forks source link

Question: Posts with future dates #6

Closed minac closed 7 years ago

minac commented 7 years ago

Is it possible to have posts with future dates that will only appear once the date has passed?

yous commented 7 years ago

Hi, you can select some posts not to be published using published variable:

---
layout: post
date: 2017-03-30
published: false
---

But when a post should be published as time passes, I think you should then regenerate the site after removing published: false line from that post.

minac commented 7 years ago

Thanks!