2012-12-16 08:40:47 +00:00
|
|
|
<table class="table table-hover">
|
|
|
|
<tr>
|
|
|
|
<td width="70px"><a href="{{url_for('user', nickname = post.author.nickname)}}"><img src="{{post.author.avatar(70)}}" /></a></td>
|
|
|
|
<td>
|
2012-12-31 21:07:54 +00:00
|
|
|
<p><a href="{{url_for('user', nickname = post.author.nickname)}}">{{post.author.nickname}}</a> said
|
|
|
|
<script>
|
|
|
|
document.write(moment("{{post.timestamp.strftime("%Y-%m-%dT%H:%M:%S Z")}}").fromNow());
|
|
|
|
</script>:</p>
|
2012-12-16 08:40:47 +00:00
|
|
|
<p><strong>{{post.body}}</strong></p>
|
|
|
|
</td>
|
2012-12-16 08:31:21 +00:00
|
|
|
</tr>
|
2012-12-31 21:07:54 +00:00
|
|
|
</table>
|