Files
microblog/app/templates/_post.html
2023-06-04 01:17:48 +02:00

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>