fix weird <hr>

master
Aevann 2024-08-17 02:54:56 +03:00
parent 726a004400
commit edb1d4dcb0
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@
<div class="card border-0 mt-3 px-3 {% if p.pinned %}pinned{% endif %} {% if voted == 1 %}upvoted{% elif voted==-1 %} downvoted{% endif %}">
<div id="post-{{p.id}}" class="actual-post {% if p.ghost %}ghost-post{% endif %} {% if p.is_banned %}banned{% endif %} {% if p.deleted_utc %}deleted {% endif %} d-flex flex-row-reverse flex-nowrap justify-content-end">
{% if p.thumb_url and not p.deleted_utc and not p.is_image and not p.is_video and not p.is_audio and not p.embed %}
{% if p.thumb_url and not p.deleted_utc and not p.is_image and not p.is_video and not p.is_audio and (not p.embed or 'twitter-tweet' in p.embed) %}
<div class="card-header bg-transparent border-0 d-none d-md-flex flex-row flex-nowrap pl-3 p-0">
<a rel="noopener" href="{{p.realurl(v)}}" style="height: fit-content"{% if not v or v.newtabexternal %}target="_blank"{% endif %}><img loading="lazy" src="{{p.thumb_url}}" class="post-img d-mob-none" alt="Unable to load image"></a>
</div>