一.定义电影模块的路由和映射
# 主页
@home.route("/")
def index():
return render_template("home/index.html")
# 主页轮播图动画
@home.route("/animation/")
def animation():
return render_template("home/animation.html")
# 电影搜索
@home.route("/search/")
def search():
return render_template("home/search.html")
# 电影详情
@home.route("/play/")
def play():
return render_template("home/play.html")
二.引入前台模板
- 给页面添加声音
<embed src="{{ url_for('static',filename='404/cloud.mp3') }}" autostart="true"loop="true" hidden="true">< /embed>