{% set current_path = template_path ~ '/modules/blog/components/featured-slider' %} {% if featured %}
{% for _post in featured %} {% set bg_classes = ['bg-yellow', 'bg-green', 'bg-violet'] %} {% set bg_class = bg_classes[loop.index0 % 3] %}
{{_post.thumbnail.alt}}
{{_post.name}}

{{_post.excerpt}}

{{_post.date}}
{{ function('pll_e', 'время чтения') }}: {{_post.reading_time}}
{{ function('get_post_likes_count', _post.ID|default(0)) }}
{{ _post.get_comments_number }}
{% if _post.get_author_name %} {% endif %}
{{ function('pll_e', 'читать статью') }}
{% endfor %}
{% endif %}