Reputation: 4631
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.
Upvotes: 0
Views: 21
Reputation: 52819
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").
Upvotes: 1