@
wctbok 还是不行,代码如下:
<table class="ui-content">
{% for topic in hot_topics %}
<tr class="topic-item">
<td><a href="/u/{{ topic.author_username }}">
<img style="max-width: 24px;max-height: 24px;" src="/static/avatar/s_{{ topic.author_avatar or 'default.png' }}" alt="" class="avatar" />
</a></td>
<td class="title">
<a href="/t/{{
topic.id }}#reply{{ topic.reply_count or 0 }}">{{ topic.title }}</a>
</td>
</tr>
{% endfor %}
</table>