mirror of
https://github.com/rmontanana/microblog.git
synced 2025-08-18 00:35:51 +00:00
12 lines
267 B
HTML
12 lines
267 B
HTML
<table>
|
|
<tr valign="top">
|
|
<td>
|
|
<img src="{{ post.author.avatar(36) }}" />
|
|
</td>
|
|
<td>
|
|
<a href="{{ url_for('user', username = post.author.username) }}">{{ post.author.username }}</a>
|
|
says:<br />{{ post.body }}
|
|
</td>
|
|
</tr>
|
|
</table>
|