BootstrapBootstrap is basically a CSS framework to design and customize responsive sites. I am introducing two options below on how to set up Bootstrap in your web application. You can find a very basic example here.


Option 1

Use cdn via jsdelivr. Learn more: https://getbootstrap.com/docs/5.1/getting-started/introduction/

Just choose and copy the appropriate bootstrap link into the head block of your base template file!

Option 2 (selected in this project)

Download bootstrap ready-to-use compiled code from here: https://getbootstrap.com/docs/5.1/getting-started/download/

This doesn’t include documentation, source files, or any optional JavaScript dependencies like Popper.

Download bootstrap compiled code, unzip it and copy css & js folders into static/bootstrap folder!

static/bootstrap/css

static/bootstrap/js

Add the links below to your base.html file!

templates/base.html