You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
1.1 KiB
28 lines
1.1 KiB
<div class="anons-best">
|
|
<h2 class="anons-best__title">{{ function('pll_e', 'САМЫЕ ЧИТАЕМЫЕ') }}:</h2>
|
|
<ul class="anons-best__card-wrap">
|
|
{% for post in most_read %}
|
|
<li class="anons-best__card">
|
|
<ul class="anons-best__card-alerts">
|
|
{% for category in post.categories %}
|
|
<li>
|
|
<a href="{{ category.link }}">{{ category.name }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
<a href="{{post.link}}" class="main-img">
|
|
<img src="{{post.thumbnail.src}}" alt="{{post.thumbnail.alt}}">
|
|
</a>
|
|
<div class="anons-best__card-body">
|
|
<a href="{{post.link}}" class="anons-best__card-body__title">{{post.title}}</a>
|
|
<div class="anons-best__card-body__datas">
|
|
<p>{{post.date}}</p>
|
|
<p>{{ function('pll_e', 'время чтения') }}: {{post.reading_time}}</p>
|
|
</div>
|
|
</div>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
|
|
|
|
|