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.
50 lines
2.2 KiB
50 lines
2.2 KiB
<div class="anons-best">
|
|
<h2 class="anons-best__title">{{ function('pll_e', 'САМЫЕ ЧИТАЕМЫЕ') }}:</h2>
|
|
|
|
<!-- Отладочная информация -->
|
|
{% if debug_info %}
|
|
<div style="display:none;">
|
|
<p>Метаполя с просмотрами:</p>
|
|
<ul>
|
|
{% for item in debug_info %}
|
|
<li>ID: {{ item.post_id }}, Ключ: {{ item.meta_key }}, Значение: {{ item.meta_value }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if most_read and most_read|length > 0 %}
|
|
<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|default('https://via.placeholder.com/150') }}" alt="{{ post.thumbnail.alt|default(post.title) }}">
|
|
</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|date('d.m.Y') }}</p>
|
|
<p>{{ function('pll_e', 'время чтения') }}: {{ post.reading_time|default('5 мин') }}</p>
|
|
<ul>
|
|
{% if post.get_author_name %}
|
|
<li class="logo">
|
|
<img src="{{ post.get_author_img|default('https://via.placeholder.com/40') }}" alt="{{ post.get_author_name }}">
|
|
</li>
|
|
{% endif %}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% else %}
|
|
<p>Нет доступных постов для отображения.</p>
|
|
{% endif %}
|
|
</div> |