remotes/1693045480750635534/spooky-22
kek7198 2021-12-28 19:27:31 -06:00
parent 986505ea17
commit 39eec176a3
1 changed files with 3 additions and 3 deletions

View File

@ -301,15 +301,15 @@
{% endif %}
{% if not p.club or v and (v.paid_dues or v.id == p.author_id) %}
<div class="relative z-10 md:ml-[4.5rem] mt-3 {% if p.over_18 or not ((v and v.cardview) or (not v and environ.get('CARD_VIEW') == '1')) %}hidden{% endif %}">
<div class="relative z-10 md:ml-[4.5rem] mt-3">
{% if p.is_video %}
<div id="video-{{p.id}}" class="text-center">
<div id="video-{{p.id}}" class="text-center {% if p.over_18 or not ((v and v.cardview) or (not v and environ.get('CARD_VIEW') == '1')) %}hidden{% endif %}">
<video controls loop preload="metadata" class="w-full max-h-[20rem]">
<source src="{{p.realurl(v)}}" type="video/mp4">
</video>
</div>
{% elif p.is_youtube %}
<div id="video-{{p.id}}">
<div id="video-{{p.id}}" class="{% if p.over_18 or not ((v and v.cardview) or (not v and environ.get('CARD_VIEW') == '1')) %}hidden{% endif %} md:ml-[4.5rem] mt-3">
{{p.embed_url | safe}}
</div>
{% endif %}