25 lines
926 B
HTML
25 lines
926 B
HTML
[viewBag]
|
|
==
|
|
<a href="{{'new/newPost'|page({id:post.id,slug:post.slug})}}" class="sub-news-left-content-item rubric-item">
|
|
<div class="sub-news-left-content-item-img">
|
|
{% if post.featured_image %}
|
|
<img src="{{post.featured_image|media|resize(350, 200)}}" alt="{{post.title}}" loading="lazy" />
|
|
{% endif %}
|
|
</div>
|
|
<div class="sub-news-left-content-item-content">
|
|
<h3>
|
|
{{post.title}}
|
|
</h3>
|
|
<div class="sub-news-left-content-item-date-content-head" style="gap: 1rem !important;">
|
|
<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/eye_gray.svg'|theme}}" style="width: 18px;">
|
|
<h4>{{post.views}}</h4>
|
|
</div>
|
|
<p class="sub-news-left-content-item-date-content-info">
|
|
{{post.summary|raw}}
|
|
</p>
|
|
</div>
|
|
</a> |