microblog/app/templates/_post.html

18 lines
587 B
HTML
Raw Normal View History

2017-09-27 06:43:28 +00:00
<table class="table table-hover">
<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>
2017-09-29 05:28:20 +00:00
said {{ moment(post.timestamp).fromNow() }}:
2017-09-27 06:43:28 +00:00
<br>
{{ post.body }}
</td>
</tr>
</table>