<div class="dashboard-box margin-top-0">
<div class="headline">
<h3>
<i class="icon-feather-list"></i>
Recent topics <span class="forum-none">on the forum</span>
</h3>
<div class="sort-by">
<a href="{{ path('app_forum_recent', {'countryMin' : "uae"}) }}"
class=" headline-link" style="position: relative">All recent topics</a>
</div>
</div>
<div class="content" style="padding-top: 20px;padding-bottom: 1px;">
<ul style="list-style-type:none;padding-left: 20px;">
{% set _total_recentPosts = _recentPosts|length %}
{% for _recentPost in _recentPosts %}
<li class="actu text-black "
style="display: flex;align-items: center;">
<span class="forum_avatar ripple-effect-dark"
title="{{ _recentPost.forumUser.alias }}"
>
{{ _recentPost.forumUser.avatarSpanName }}
</span>
{{ _recentPost.createdAt|date('d/m') }}
-
<a class="news-link text-black" href="{{ path('app_forum_forum_post_show',{
'country' : _recentPost.topic.countryMin,
'topicslug' : _recentPost.topic.slug,
'slug' : _recentPost.slug
}) }}">
<b>{{ _recentPost.title|u.truncate(40, '...') }}</b>
</a>
</li>
{% if loop.index != _total_recentPosts %}
<div class="margin-top-5 margin-bottom-5" style="border-bottom: 0.1rem solid #e4e4e4; width: 60%"></div>
{% endif %}
{% endfor %}
</ul>
</div>
</div>