여기까지 왔으면 존나 잘하고 있는 것이다. 왜냐? 처음에는 존나 어려우니까 ㅠ 이제 각종 html파일을 넣을 템플릿과 css를 만들어보자. 1. 템플릿 렌더링하기 - mkdir static templates 이제 이 템플렛s폴더 안에서 템플렛을 렌더링할 것인데 그러기 위해서는 render_template라는 함수(?)를 가져와야(import)한다. app.py의 첫번째 줄에 이렇게 추가해주면 된다. from flask import Flask, render_template app = Flask(__name__) @app.route('/') def index(): return render_template('index.html') if __name__ == "__main__": app.run(debug=Tru..