Fixed mentions page

This commit is contained in:
Socks 2018-03-28 03:41:17 +01:00
parent 3d1b22f952
commit 637b8f4482

View file

@ -6,7 +6,7 @@
<div class="row">
{% for post in posts if not post.hidden %}
<div class="card" style="word-wrap: break-word; margin-bottom: 16px; width: 100%;">
<div class="card-header">
<div class="card-header">
<b><a href="/profile/{{ post.poster }}">{{ post.poster }}</a></b> at {{ post.timePosted.strftime('%Y-%m-%d %-H:%M') }} {% if post.edited %}<i>(Edited)</i>{% endif %}
<span style="float: right">
{% if logged_in|lower in post.likes %}
@ -23,7 +23,6 @@
{% endif %}
</span>
</div>
</div>
<div class="card-body">
{{ post.content }}
</div>