I am trying to render the file home.html. The file exists in my project, but I keep getting jinja2.exceptions.TemplateNotFound: home.html when I t
home.html
jinja2.exceptions.TemplateNotFound: home.html
My problem was that the file I was referencing from inside my home.html was a .j2 instead of a .html, and when I changed it back jinja could read it.
.j2
.html
Stupid error but it might help someone.