from flask import render_template from app import app """ 首页相关路由配置 """ @app.route('/') @app.route('/index') def index(): item = { "msg": "后台传递信息" } return render_template('index.html', title="梦想橡皮擦", item=item) @app.route('/bt') def bt(): return render_template('bt.html') @app.route('/mac') def mac(): return render_template('_form.html') """博客搭建清单""" @app.route('/blog') def blog(): return render_template('blog.html')