制作首页的显示列表
Posted 曹馨文
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了制作首页的显示列表相关的知识,希望对你有一定的参考价值。
1. 在首页添加显示问答的列表,并定义好相应的样式。
无序列表
<ul >
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
2. 用字典向index.html传递参数。
<div class="listbox"> <ul class="alist"> <li class="list"> <a href="#">{{ username }}</a><br> <a href="#">Question:{{ title }}</a><br> <a href="#">Detail:{{ detail }}</a> <span class="badge">{{ create_time }}TIME</span> <p></p> </li> </ul> </div>
@app.route(‘/index/‘) def index(): contex={ ‘user‘:‘mis‘ } return render_template(‘index.html‘)
以上是关于制作首页的显示列表的主要内容,如果未能解决你的问题,请参考以下文章