By default flask uses template files stored in \"template\" directory :
/flaskapp /application.py /templates /hello.html
Is
You can pass the Flask constructor a "template_folder" argument.
Like so...
Flask(__name__, template_folder="wherever")
Here's the documentation: http://flask.pocoo.org/docs/api/