microblog/app/templates/_post.html

7 lines
267 B
HTML
Raw Normal View History

<table>
<tr valign="top">
<td><img src="{{ post.author.avatar(36) }}"></td>
2017-09-18 05:41:40 +00:00
<td><a href="{{ url_for('user', username=post.author.username) }}">{{ post.author.username }}</a> says:<br>{{ post.body }}</td>
</tr>
</table>