Book Image

Bootstrap 4 Site Blueprints - Second Edition

By : Ian Whitney, David Cochran
Book Image

Bootstrap 4 Site Blueprints - Second Edition

By: Ian Whitney, David Cochran

Overview of this book

Packed with trade secrets, this second edition is your one-stop solution to creating websites that will provide the best experience for your users. We cover six popular, real-world examples, where each project teaches you about the various functionalities of Bootstrap 4 and their implementation. The book starts off by getting you up and running with the new features of Bootstrap 4 before gradually moving on to customizing your blog with Bootstrap and SASS, building a portfolio site, and turning it into a WordPress theme. In the process, you will learn to recompile Bootstrap files using SASS, design a user interface, and integrate JavaScript plugins. Towards the end of the book, you will also be introduced to integrating Bootstrap 4 with popular application frameworks such as Angular 2, Ruby on Rails, and React.
Table of Contents (15 chapters)
Bootstrap 4 Site Blueprints
Credits
About the Authors
About the Reviewer
www.PacktPub.com
Preface

Sizing up our beginning files


As with all the projects in this book, the beginning files for this project can be downloaded from the Packt Publishing website at http://www.packtpub.com/support. You'll find the files for this project in the chapter6/start folder.

These files are a copy of our results from Chapter 5, Bootstrappin' Your Portfolio. Thus, we have the benefit of the following key components:

  • A complete build process, including the Sass compiler and the Panini template engine

  • Bootstrap SCSS and JavaScript files

  • The Panini HTML templates

In addition to these key assets, we have some of the custom Sass touches we created during the project in Chapter 5, Bootstrappin' Your Portfolio. They can be found in the following files, which are present in the scss and scss/includes directories:

  • _main.scss: This is customized to import Bootstrap's Sass files from the bower_components/bootstrap/scss directory, as well as Font Awesome font icons and our custom Sass files

  • _carousel.scss: This file has...