bstest is a Django project for testing Bootstrap 4 (or whichever version of bootstrap you install). I created this from Treehouse course in Bootstrap 4 in Fall 2017. Lots of good boostrap examples here.
Django debug toolbar is nice Django app for development
The templates folder has index.html, which in Django terms "extends" layout.html. You find the < link > to bootstrapcdn.com in layout.html, but the interesting bootstrap code is in index.html
You have to download Python and install Django and Django apps to use this site as below
- clone this repo ... see GitHub docs ... git clone
- cd .../bstest (i.e. cd to bstest directory, wherever you put it).
- python3 manage.py runserver (or python3.5 manage.py runserver for some systems)
- browse to 127.0.0.1:8000
- note cool bootstrap being used ...
2/17/18 cdk