mirror of
https://github.com/rmontanana/microblog.git
synced 2025-08-16 15:55:51 +00:00
18 lines
450 B
HTML
18 lines
450 B
HTML
<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>
|
|
<a href="{{ url_for('user', username=post.author.username) }}">
|
|
{{ post.author.username }}
|
|
</a>
|
|
says:
|
|
<br>
|
|
{{ post.body }}
|
|
</td>
|
|
</tr>
|
|
</table>
|