flask-include标签使用标签
Posted qunxiadexiaoxiangjiao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了flask-include标签使用标签相关的知识,希望对你有一定的参考价值。
[footer.html]
<footer> 这是底部 </footer>
[header.html]
<style> .nav ul{ overflow: hidden; } .nav ul li{ float:left; margin:0 20px; } </style> <nav class=‘nav‘> <ul> <li>首页</li> <li>课程详情</li> <li>视频教程</li> <li>关于我们</li> </ul>
</nav>
[index.html]
<body> {% include "common/header.html" %} <div class="content"> 中间的 </div> {% include "common/footer.html" %} </body>
[.py]
@app.route(‘/‘) def hello_world(): return render_template(‘index.html‘)
以上是关于flask-include标签使用标签的主要内容,如果未能解决你的问题,请参考以下文章