Search code examples
yamljekyllblogs

Wrong dates shown in Jekyll-based blog


I have posted two posts to my blog in the past two days. As you can see, both are dated Nov 1, 2017. I correctly named the files with their respective dates as you can see in the github repofor this blog. What is going on here? Why do the posts show the wrong date?


Solution

  • You have in the YML the following date:

    2017-10-20 0800:00:00 -0600
    

    This should be:

    2017-10-20 08:00:00 -0600
    

    (The first colon is preceded by too many zero's)