How to do it...

  1. Navigate to the chapter10/start folder using your console.
  2. Run the gem install jekyll command. Verify the installation with jekyll -v, which will inform you which Jekyll version has been installed.
  3. Next, type another command, jekyll new recipe1 --blank, in Bash to add a blank Jekyll installation. A new folder will be created, with the following structure:
jekyll├── _drafts├── _layouts├── _posts└── index.html
  1. CD into the recipe1 folder. Add a new folder; we will call it assets. Inside of this assets folder, we will add three subfolders, css, js, and scss, by running the following command:
mkdir assets assets/js assets/css assets/scss
  1. Now, let's copy and paste the SCSS, JS, and jQuery files we need for Bootstrap 4 to ...

Get Bootstrap 4 Cookbook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.