ORIENT/themes/modern2/partials/popular-posts.htm

32 lines
1.1 KiB
HTML

description = "popular-posts"
[popularPosts]
postsLimit = 10
noPostsMessage = "No posts found"
postPage = "post"
[viewBag]
==
<div id="right_top-up" class="right_top-up">
<div class="right_top-title">
<h2 class="right_top-title-text">{{'Самое читаемое'|_}}</h2>
<div class="right_top-line"></div>
</div>
{% for post in posts %}
<div class="right_top-content">
<div class="right_top-content-top">
<h4 class="right_top-content-sphere">{{ post.categories.first.name }}</h4>
<div class="right-top-content-date">
<span class="date">{{ post.published_at| date('d.m.Y')}}</span>
<span class="time">{{post.published_at|date('H:i')}}</span>
</div>
</div>
<div class="right_top-content-bottom">
<a href="{{postPage|page({slug:post.slug,id:post.id})}}" class="right_top-content-bottom-text">
{{post.title}}
</a>
</div>
<div class="hr-line"></div>
</div>
{% endfor %}
</div>