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

Overview


You can use Angular to build single page applications (SPAs) and rich web applications. Angular implements the Model-View-Controller (MVC) in JavaScript and HTML. The MVC is an architectural pattern that separates an application into three main logical components: the model, the view, and the controller. Data -binding in Angular apps is the automatic synchronization of data between the model and view components.

Angular's HTML compiler can attach a specified behavior to a DOM element. An Angular directive is a marker on a DOM element that tells the compiler what to attach or how to transform it.

Angular contains a built-in subset of jQuery, called jQuery lite or jqLite, which means that you should not use jQuery in your Angular apps. Bootstrap's JavaScript plugins require jQuery and so cannot, or should not, be used in your Angular apps.

Angular directives for Bootstrap can replace Bootstrap's plugins and enable you to use Bootstrap components in your Angular apps. You can use Bootstrap...