制作首页的显示列表。
Posted 郑淑莹
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了制作首页的显示列表。相关的知识,希望对你有一定的参考价值。
1. 在首页添加显示问答的列表,并定义好相应的样式。
无序列表
<ul >
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
<div id="list-container"> <ul> <li class="list-group-item"> <span class="glyphicon glyphicon-leaf" aria-hidden="true"></span> 帐号:<a href="#" target="_blank">{{ username }}</a> <br> <a href="#">{{ title }}</a> <span class="badge">creat_time</span> <p style="...">{{ questions }}</p> </li> </ul> </div>
2. 用字典向index.html传递参数。
@app.route(\'/index/\') def index(): context={ \'questions\':\'wowwowwow\' } return render_template(\'index.html\',**context)
以上是关于制作首页的显示列表。的主要内容,如果未能解决你的问题,请参考以下文章