码迷,mamicode.com
首页 > 其他好文 > 详细

flask-include标签使用标签

时间:2018-09-05 23:43:38      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:text   nts   iss   csdn   margin   title   template   技术   hidden   

 

[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标签使用标签

标签:text   nts   iss   csdn   margin   title   template   技术   hidden   

原文地址:https://www.cnblogs.com/qunxiadexiaoxiangjiao/p/9594970.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!