0

I'm building a website with Jekyll. That website should be shipped with Twitters Bootstrap.

I was wondering if it is somehow possible to add bootstrap to my project folder using gem/bundler.

My alternative would be using npm to install bower and then use bower to install bootstrap.

Edward
  • 4,453
  • 8
  • 44
  • 82

1 Answers1

1

You can try jekyll-bootstrap-sass gem, but it's not used by github pages and keep sources hidden in gem directory.

I prefer to use bower (see my answer here). The bower way allows me to make SCSS sources available for designer without the need to search them in a gem (I personally find that "hiding" templates or styles in a gem is not easing development because it creates some bad "magic").

Community
  • 1
  • 1
David Jacquel
  • 51,670
  • 6
  • 121
  • 147