文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
渲染用户动态
单条用户动态的渲染逻辑被提取到名为 _post.html 的子模板中。 我只需要在这个模板上做一些很小的调整,就可以使其在 Bootstrap 下看起来很棒了。
app/templates/_post.html : 重新设计后的用户动态子模板。
<table>
<tr>
<td width="70px">
<a href="{{ url_for('user', username=post.author.username) }}">
<img src="{{ post.author.avatar(70) }}" />
</a>
</td>
<td>
<a href="{{ url_for('user', username=post.author.username) }}">
{{ post.author.username }}
</a>
says:
<br>
{{ post.body }}
</td>
</tr>
</table>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论