ORIENT/themes/modern2/partials/new/post-featured.htm

46 lines
1.6 KiB
HTML

[viewBag]
[blogCategories]
slug = "watan"
displayEmpty = 0
categoryPage = 404
==
{% set posts = blogCategories.categories.shift.take_posts(10) %}
<div class="article-content-bottom">
<h3>{{'new.post.page.chitayte.takzhe'|_}}</h3>
<div class="article-swiper-wrapper-lower">
<div class="swiper articleBottomSwiper">
<div class="swiper-wrapper">
{% for post in posts %}
<div class="swiper-slide">
<div class="video-item photo-item article-bottom-item">
<div class="video photo">
<a href="{{'new/newPost'|page({id:post.id,slug:post.slug})}}" ><img src="{{post.featured_image|media|resize(391)}}" /></a>
</div>
<div class="sub-news-left-content-item-content video-info">
<div class="sub-news-left-content-item-date-content-head article-bottom-head">
<h4>{{post.published_at|date('d.m.Y')}}</h4>
<span>|</span>
<h4>{{post.published_at|date('H:i')}}</h4>
</div>
<a href="{{'new/newPost'|page({id:post.id,slug:post.slug})}}" class="sub-news-left-content-item-date-content-info article-content-info article-content-info">
{{ post.title }}
</a>
</div>
</div>
</div>
{% endfor %}
</div>
<div class="video-prev photo-prev article-bottom-prev">
<img src="{{ 'assets/new/icons/arrow-left-white.svg'|theme}}" alt="" />
</div>
<div class="video-next photo-next article-bottom-next">
<img src="{{ 'assets/new/icons/arrow-right-white.svg'|theme}}" alt="" />
</div>
</div>
</div>
</div>