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

32 lines
1.1 KiB
HTML
Raw Permalink Normal View History

2021-11-24 12:28:48 +00:00
[popularPosts]
category = "{{ :category }}"
postsLimit = 5
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">
2021-12-17 12:54:14 +00:00
<h3 class="right_top-content-sphere">{{ post.categories.first.name }}</h3>
2021-11-24 12:28:48 +00:00
<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 %}
2021-12-17 12:54:14 +00:00
</div>