This is a simple template for getting up and running with Bootstrap
Built on nodejs and expressjs v4.17.1
404 error asset from https://unsplash.com/ by Rémi Jacquaint
| Software | Version | Documentation |
|---|---|---|
| jQuery | 3.5.1 | https://api.jquery.com/ |
| Popper.js | 1.16.0 | https://popper.js.org/ |
| Bootstrap | 4.5.0 | https://getbootstrap.com/docs/4.5/getting-started/introduction/ |
Copy index.html to another file in views, for instance anotherfile.html. Then add another route in routes.js:
router.get('/somelocation', function(req, res) {
res.sendFile(views + '/anotherfile.html')
})