I am trying to render the file bootstrap.html. The file exists in my folder, but I keep getting jinja2.exceptions.templateNotFound: bootstrap.html when I try to render it. Why can't Flask find my template?
@app.route("/bootstrap")
def bootstrap ():
return render_template('bootstrap.html')```