When creating new post, the date in the front matter was set as user local time without timezone info. This may cause some problems when building or in post metadata.
If the build server and the user are not in the same timezone, e.g. the user in UTC+10 and the build server in UTC, the date will always be ahead of the build server. Since Jekyll won't build posts with a future date unless with --future, the post will be hidden until another build 10 hours later.
When creating new post, the date in the front matter was set as user local time without timezone info. This may cause some problems when building or in post metadata.
If the build server and the user are not in the same timezone, e.g. the user in UTC+10 and the build server in UTC, the date will always be ahead of the build server. Since Jekyll won't build posts with a future date unless with
--future
, the post will be hidden until another build 10 hours later.