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

Publishing your work on GitHub


Since your template is ready to use, you may consider publishing it on GitHub. Other people may use your work, but on the other hand, they can also help you to improve it.

Note

Read more about publishing your project on GitHub at https://guides.github.com/introduction/getting-your-project-on-github/.

Since you have installed both the Bower packages and the Gulp plugins with the --save-dev option, your bower.json and package.json files contain an up-to-date list with the project dependencies. When publishing your project, you do not have to publish the dependencies too. People can download your project files and then install the dependencies by running the following commands:

bower install
npm install

After the running the install command, they can run your project with the gulp command; also the bootstrap watch command of Bootstrap CLI should work.

You can create a .gitignore file to ensure that only your project files are uploaded to GitHub. Your .gitignore file...