전체 글 (1) 썸네일형 리스트형 flask test from flask import Flask, render_template app = Flask(__name__) from user import routes @app.route('/') def index(): return render_template('home.html') @app.route('/home') def home(): return render_template('home.html') @app.route('/dashboard/') def dashboard(): return render_template('dashboard.html') 이전 1 다음