34 lines
1.3 KiB
HTML
34 lines
1.3 KiB
HTML
[viewBag]
|
|
==
|
|
<div class="video-item {% if post.type == 'photo' %} photo-item {% endif %}">
|
|
<div class="video {% if post.type == 'photo' %} photo {% endif %}">
|
|
{% if post.type == 'photo' %}
|
|
<img src="{{post.poster_file|media|resize(683, 385, )}}" loading="lazy">
|
|
{% else %}
|
|
<a onClick="countView({{post.id}});">
|
|
|
|
|
|
<video id="video" poster="{{post.poster_file|media|resize(513, 288, {mode: 'crop'})}}" controls preload="metadata">
|
|
<source src="{{post.media_file[0].media|media}}" type="video/mp4">
|
|
|
|
<track label="{{activeLocaleName}}" kind="subtitles" srclang="{{activeLocale}}" src="{{post.subtitle|media}}" default>
|
|
|
|
</video>
|
|
</a>
|
|
{% endif %}
|
|
|
|
</div>
|
|
<div class="sub-news-left-content-item-content video-info">
|
|
<div class="sub-news-left-content-item-date-content-head">
|
|
<h4>{{post.published_at|date('d.m.Y')}}</h4>
|
|
<span>|</span>
|
|
<h4> {{post.published_at|date('H:i')}}</h4>
|
|
<!-- <span>|</span>
|
|
<img src="{{'assets/new/icons/eye.svg'|theme}}" alt="" style="width: 18px;" />
|
|
<span id="media_view_{{post.id}}">{% if post.view == null %} 0 {% else %} {{ post.view }} {% endif %}</span> -->
|
|
</div>
|
|
<p class="sub-news-left-content-item-date-content-info">
|
|
{{post.name}}
|
|
</p>
|
|
</div>
|
|
</div> |