display vids in card view

remotes/1693045480750635534/spooky-22
fireworks88 2021-09-05 22:38:11 +02:00
parent b503920699
commit 3b0094b6f5
1 changed files with 12 additions and 14 deletions

View File

@ -216,20 +216,18 @@
</div>
</div>
{% if not v or v.cardview %}
{% if p.is_image %}
<div style="text-align: center" class="mt-4">
<a target="_blank" rel="nofollow noopener noreferrer" href="{{p.url}}">
<img loading="lazy" src="{{p.url}}" class="img-fluid" style="max-height:500px;" alt="Unable to load image">
</a>
</div>
{% elif p.is_video %}
<div style="text-align: center" class="mt-4">
<video controls preload="metadata" style="max-width: 100%">
<source src="{{ p.realurl(v) }}" type="video/mp4">
</video>
</div>
{% endif %}
{% if p.is_image and not (v and not v.cardview) %}
<div style="text-align: center" class="mt-4">
<a target="_blank" rel="nofollow noopener noreferrer" href="{{p.url}}">
<img loading="lazy" src="{{p.url}}" class="img-fluid" style="max-height:500px;" alt="Unable to load image">
</a>
</div>
{% elif p.is_video %}
<div style="text-align: center" class="mt-4">
<video controls preload="metadata" style="max-width: 100%">
<source src="{{ p.realurl(v) }}" type="video/mp4">
</video>
</div>
{% endif %}
{% if p.realbody(v) %}