1

As far as I understand, jekyll new from 3.2.1 doesn't create _layout, _include and everything like that, so that it only states theme: minima and all includes and layouts are encapsulated in the theme as stated in another answer Jekyll default installation doesn't have _layouts directory.

I'd like to add Google analytics to my new site, how do I do that now? In the past I'd just add it to _includes/footer.html or whatever.

Alternatively, how do I just create blog all these directories and files like before (without copying it from somewhere).

Community
  • 1
  • 1
kirillbobyrev
  • 1,619
  • 2
  • 14
  • 28

1 Answers1

3

As explained here, you just need to manually create your own versions of the theme's templates under _layouts and _includes. If you look in the minima theme repository you can see the templates that you can override.