74 lines
2.4 KiB
HTML
74 lines
2.4 KiB
HTML
[viewBag]
|
|
|
|
[blogPosts]
|
|
pageNumber = "{{ :page }}"
|
|
categoryGroup = "stati"
|
|
postsPerPage = 9
|
|
noPostsMessage = "No posts found"
|
|
sortOrder = "published_at desc"
|
|
categoryPage = 404
|
|
postPage = 404
|
|
exceptCategories = "ot-redaktora"
|
|
==
|
|
{% set posts = blogPosts.posts %}
|
|
|
|
<section class="posts">
|
|
<div class="container">
|
|
<div class="posts-inner">
|
|
<div class="trending-head">
|
|
<h2><a href="{{'new/group'|page({categoryGroup: 'stati'})}}">{{'new.home.publication'|_}}</a></h2>
|
|
<span></span>
|
|
</div>
|
|
<div class="posts-content">
|
|
|
|
|
|
<a href="{{'new/newPost'|page({id:posts[0].id,slug:posts[0].slug})}}" class="posts-item big">
|
|
<div class="trending-aside-item">
|
|
<div class="trending-img">
|
|
<img src="{{posts[0].featured_image|media|resize(618)}}" alt="" />
|
|
</div>
|
|
<div class="trending-aside-content">
|
|
<div class="sub-news-left-content-item-date-content-head trending-aside-content-head">
|
|
<h3>{{posts[0].categories.first.name}}</h3>
|
|
<span>|</span>
|
|
<h4>{{posts[0].published_at|date('d.m.Y')}}</h4>
|
|
<span>|</span>
|
|
<h4> {{posts[0].published_at|date('H:i')}}</h4>
|
|
</div>
|
|
<p class="sub-news-left-content-item-date-content-info">
|
|
{{posts[0].title}}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</a>
|
|
|
|
{% for key, post in posts.slice(1,9) %}
|
|
|
|
<a href="{{'new/newPost'|page({id:post.id,slug:post.slug})}}" class="posts-item sm">
|
|
<div class="trending-aside-item">
|
|
<div class="trending-img">
|
|
<img src="{{post.featured_image|media|resize(396, 217, {mode: 'crop'})}}" alt="{{post.title}}" loading="lazy" />
|
|
</div>
|
|
<div class="trending-aside-content">
|
|
<div class="sub-news-left-content-item-date-content-head trending-aside-content-head">
|
|
<h3>{{ post.categories.first.name }}</h3>
|
|
<span>|</span>
|
|
<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.title}}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</a>
|
|
|
|
{% endfor %}
|
|
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</section> |