1. 在首页添加显示问答的列表,并定义好相应的样式。
无序列表
<ul >
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
{% extends'index.html' %}{ % block title %}首页{% endblock %}{ % block head %}{% endblock %}{ % block main %}{
{ username }}context
- { { user }} 标题 发布时间
内容
2. 用字典向index.html传递参数。
@app.route('/')def index(): context = { 'user' : 'qingting' } return render_template('index.html',*context)