
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
templates 폴더 안에 index.html 들어가 있고 app.py는 templates폴더 밖에 있고 static폴더 templates폴더 이름에 오타도 없는데 왜 오류가 뜰까요?

작성한 코드 및 에러 메세지
from flask import Flask, render_templates
app = Flask(__name__)
@app.route('/')
def home():
return render_templates('index.html')
if __name__ == '__main__':
app.run('0.0.0.0',port=5000,debug=True)
