2

After installing Jekyll the first site I generated (as per tutorial) did not generate underscore folders (_includes, _Layouts, _sass). Only generated _posts.

Any help appreciated.

teo van kot
  • 12,350
  • 10
  • 38
  • 70
kimh
  • 53
  • 3
  • Possible duplicate of [Jekyll default installation doesn't have \_layouts directory](http://stackoverflow.com/questions/38891463/jekyll-default-installation-doesnt-have-layouts-directory) – Ross Sep 07 '16 at 10:44

1 Answers1

0

From version 3.2, those files and folders from the jekyll new command are stored within the Gem-based themes. I answered this here: Jekyll default installation doesn't have _layouts directory


You must be running the recent Jekyll version 3.2, which introduces Gem based themes (from https://jekyllrb.com/docs/themes/):

Jekyll themes package layouts, includes, and stylesheets in a way that can be overridden by your site’s content. The theme is set in _config.yml:

theme: minima

Initial files that were previously in _layouts, _includes, and _sass are now packaged with the theme.

Community
  • 1
  • 1
Ross
  • 2,701
  • 16
  • 25