22 lines
868 B
HTML
22 lines
868 B
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 %}
|
|
<video src="{{post.media_file[0].media|media}}" controls poster="{{post.poster_file|media|resize(513, 288, {mode: 'crop'})}}" ></video>
|
|
{% 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>
|
|
</div>
|
|
<p class="sub-news-left-content-item-date-content-info">
|
|
{{post.name}}
|
|
</p>
|
|
</div>
|
|
</div> |