Hello, I’m looking for a solution to an error I’m getting with running Jakyll on my machine,
I did this (Mac 10.12.4)
$ gem install jekyll bundler
$ jekyll new jekyll-test
$ cd jekyll-test
$ bundle exec jekyll serve
And got this:
ERROR: YOUR SITE COULD NOT BE BUILT:
------------------------------------
Invalid date ‘<%= Time.now.strftime(’%Y-%m-%d %H:%M:%S %z’) %>’: Document ‘my-awesome-site/gems/jekyll-3.4.3/lib/site_template/_posts/2017-05-15-welcome-to-jekyll.markdown.erb’ does not have a valid date in the YAML front ma
So I tried to exclude vendor from as mentioned #2938:
And entered it like so in _config.yml:
exclude:
- Gemfile
- Gemfile.lock
- vendor
But I’m still receiving the same error. Any pointers?
Thanks!