制作首页的显示列表。
Posted 056林锋
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了制作首页的显示列表。相关的知识,希望对你有一定的参考价值。
1. 在首页添加显示问答的列表,并定义好相应的样式。
无序列表
<ul >
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
2. 用字典向index.html传递参数。
<div class="row clearfix"> <div class="col-md-4 column"> <div class="jumbotron well"> <h1> Hello, world! </h1> <p> This is a template for a simple marketing or informational website. It includes a large callout called the hero unit and three supporting pieces of content. Use it as a starting point to create something more unique. </p> <p> <a class="btn btn-primary btn-large" href="#">Learn more</a> </p> </div> </div> <div class="col-md-8 column" style="background: whitesmoke"> <p style="color: #FFFFFF">`{{ user }}context</p> <ul> <li> <a href="#">{{ user }}</a> <a href="#">{{ title }}</a> <br> <p>{{ detail }}</p> <span>发布时间 longtime ago</span> <span>评论数 100000++++</span> </li> </ul> </div> </div> </div>
@app.route(‘/‘)
def index():
context = {
‘user‘:‘帅锋锋‘,
‘title‘:‘单纯小美好‘,
‘detail‘:‘最好的我们‘
}
return render_template("index.html",**context)
以上是关于制作首页的显示列表。的主要内容,如果未能解决你的问题,请参考以下文章