mirror of
https://github.com/rmontanana/microblog.git
synced 2025-08-17 00:05:51 +00:00
Chapter 11
This commit is contained in:
@@ -1,11 +1,17 @@
|
||||
<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>
|
||||
<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>
|
||||
|
Reference in New Issue
Block a user