Chapter 11

This commit is contained in:
2023-06-04 11:24:53 +02:00
parent 44e46135a6
commit 190cd464cf
13 changed files with 294 additions and 188 deletions

View File

@@ -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>