I am encountering an issue while developing a webpage using web.py with added bootstrap and ripples. Upon running it, I am receiving the following error messages:
- - [17/Aug/2020 08:56:01] "HTTP/1.1 GET /" - 200 OK
- - [17/Aug/2020 08:56:01] "HTTP/1.1 GET /static/css/bootstrap-material-design.min.css" - 404 File not found
- - [17/Aug/2020 08:56:01] "HTTP/1.1 GET /static/js/bootstrap.min.css" - 404 File not found
- - [17/Aug/2020 08:56:01] "HTTP/1.1 GET /static/js/material.min.js" - 404 File not found
- - [17/Aug/2020 08:56:01] "HTTP/1.1 GET /static/js/ripples.min.js" - 404 File not found
- - [17/Aug/2020 08:56:01] "HTTP/1.1 GET /static/js/bootstrap.min.css" - 404 File not found
- - [17/Aug/2020 08:56:01] "HTTP/1.1 GET /static/js/material.min.js" - 404 File not found
- - [17/Aug/2020 08:56:01] "HTTP/1.1 GET /static/js/ripples.min.js" - 404 File not found
It is possible that the issue stems from either outdated libraries or another source that I am currently unaware of. Here is the snippet of the code being used:
MainLay.html:
$def with (page)
<!-- Bootstrap usage defining a css variable-->
$var css: static/css/bootstrap.min.css static/css/bootstrap-material-design.min.css
<!-- jQuery usage defining a js variable-->
$var js: static/js/jquery-3.5.1.min.js static/js/bootstrap.min.css static/js/material.min.js static/js/ripples.min.js
If you have any ideas on what might be causing this problem, I would greatly appreciate your input. Thank you in advance.