博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
模版继承
阅读量:4966 次
发布时间:2019-06-12

本文共 645 字,大约阅读时间需要 2 分钟。

from flask import Flask, render_templateapp = Flask(__name__)@app.route("/one")def get_one():    return render_template("one.html")@app.route("/two")def get_two():    return render_template("two.html")if __name__ == '__main__':    app.run(debug=True)#base.html    
Title
Header
{
% block content %} {
% endblock %}
Footer
#one.html{% extends "base.html" %}{
% block content %}

这恐怕是第一页

{
% endblock %}#two.html{% extends "base.html" %}{
% block content %}

这应该是第二页

{
% endblock %}

 

转载于:https://www.cnblogs.com/themost/p/8452859.html

你可能感兴趣的文章
nginx实现高性能负载均衡的Tomcat集群
查看>>
Rxjs中Notification介绍(一)
查看>>
merge和concat区别
查看>>
Rxjs中Notification 介绍
查看>>
2个数组对象合并,去重,并且标志出数据来自哪个数组
查看>>
【转载】CentOS7下使用LVM给系统硬盘扩容
查看>>
1-18-1 LVM管理和ssm存储管理器使用&磁盘配额(一)
查看>>
1-3 RHEL7操作系统的安装
查看>>
1-18-2 LVM管理和ssm存储管理器使用&磁盘配额 (二)
查看>>
Centos7 系统更改apache默认网站目录(解决You don't have permission to access / on this server问题)...
查看>>
Centos7 安装python环境
查看>>
修改apt,pip,npm为国内镜像源
查看>>
python 虚拟环境安装
查看>>
python 实现多层列表拆分成单层列表
查看>>
欢迎页面
查看>>
sqlserver cdc实现数据增量抽取
查看>>
论分治与归并思想
查看>>
关于缩短cin时间的方法
查看>>
Romantic HDU - 2669(扩欧模板题)
查看>>
素数筛法(Eratosthenes筛法)
查看>>