2022-12-06 15:33:01 +00:00
|
|
|
[viewBag]
|
|
|
|
|
|
|
|
|
|
[blogPosts]
|
|
|
|
|
pageNumber = "{{ :page }}"
|
|
|
|
|
featured = "yes"
|
|
|
|
|
postsPerPage = 10
|
|
|
|
|
noPostsMessage = "No posts found"
|
|
|
|
|
sortOrder = "published_at desc"
|
|
|
|
|
categoryPage = 404
|
|
|
|
|
postPage = 404
|
|
|
|
|
==
|
|
|
|
|
{% set posts = blogPosts.posts %}
|
|
|
|
|
|
|
|
|
|
<div class="article-content-bottom">
|
2022-12-19 12:53:46 +00:00
|
|
|
<h3>{{'new.post.page.chitayte.takzhe'|_}}</h3>
|
2022-12-06 15:33:01 +00:00
|
|
|
<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">
|
|
|
|
|
<img src="{{post.featured_image|media}}" />
|
|
|
|
|
</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>
|
|
|
|
|
<p class="sub-news-left-content-item-date-content-info article-content-info article-content-info">
|
|
|
|
|
{{ post.title }}
|
|
|
|
|
</p>
|
|
|
|
|
</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>
|