microblog/app/templates/_post.html

21 lines
736 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>
2017-09-30 07:21:17 +00:00
{% set user_link %}
<a href="{{ url_for('user', username=post.author.username) }}">
{{ post.author.username }}
</a>
{% endset %}
{{ _('%(username)s said %(when)s',
username=user_link, when=moment(post.timestamp).fromNow()) }}
2017-09-27 06:43:28 +00:00
<br>
{{ post.body }}
</td>
</tr>
</table>