File size: 692 Bytes
a8eb386 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
<table class="table table-hover">
</table>
<div class="my-3 p-3 bg-body rounded shadow-sm">
<h6 class="border-bottom pb-2 mb-0">最近</h6>
{% for tweet in tweets %}
<div class="d-flex text-muted pt-3">
<img src="{{ tweet.author.avatar(48) }}" class="rounded-circle" alt="">
<p class="pb-3 mb-0 small lh-sm border-bottom">
<a href="{{ url_for('profile', username=tweet.author.username) }}">
<strong class="fw-bold text-dark">{{ tweet.author.username }}</strong>
</a>
{{ tweet.create_time }}<br>
{{ tweet.body }}
</p>
</div>
{% endfor %}
</div> |