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

制作首页的显示列表。

时间:2017-12-01 13:40:32      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:off   ext   href   sha   template   ase   列表   padding   字典   

1. 在首页添加显示问答的列表,并定义好相应的样式。

无序列表

<ul >

  <li>Coffee</li>

  <li>Tea</li>

  <li>Milk</li>

</ul>

2. 用字典向index.html传递参数。

{% block main %}
    <p>{{ username }} contextx</p>
    <ul class="new-list" >
    <li class="list-group" style="padding-left: 0px; padding-right: 10px; box-shadow: rgba(0, 0, 0, 0.498039) 0px 0px 0px 0px;">
        <p href="#">
            <div class="new-list-text">
                <div class="new-list-title"><a href="#">title</a></div>
                <div class="new-list-detail"><p>detail</p></div>
            </div>
            <div class="new-list-info">
                <span>
                    <i class="new-list-time"><a href="#"></a>create_time </i><br>
                    <i class="new-list-name"><a href="#"></a>yang</i>
                </span>
            </div>
        </a>
    </li>
    </ul>
{% endblock %}
db.create_all()
# 首页
@app.route(/)
def index():
    context={
        title:title,
        detail:detail,
        username: yang,
        create_time: create_time,
    }
    return render_template(base.html,**context)

 

制作首页的显示列表。

标签:off   ext   href   sha   template   ase   列表   padding   字典   

原文地址:http://www.cnblogs.com/yangjlee/p/7941176.html

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