templates/forum/layout/recent_post.html.twig line 1

Open in your IDE?
  1. <div class="dashboard-box margin-top-0">
  2.     <div class="headline">
  3.         <h3>
  4.             <i class="icon-feather-list"></i>
  5.             Recent topics <span class="forum-none">on the forum</span>
  6.         </h3>
  7.         <div class="sort-by">
  8.             <a href="{{ path('app_forum_recent', {'countryMin' : "uae"}) }}"
  9.                class=" headline-link" style="position: relative">All recent topics</a>
  10.         </div>
  11.     </div>
  12.     <div class="content" style="padding-top: 20px;padding-bottom: 1px;">
  13.         <ul style="list-style-type:none;padding-left: 20px;">
  14.             {% set _total_recentPosts = _recentPosts|length %}
  15.             {% for _recentPost in _recentPosts %}
  16.                 <li class="actu text-black "
  17.                     style="display: flex;align-items: center;">
  18.                     <span class="forum_avatar ripple-effect-dark"
  19.                           title="{{ _recentPost.forumUser.alias }}"
  20.                     >
  21.                         {{ _recentPost.forumUser.avatarSpanName }}
  22.                     </span>
  23.                     &nbsp; {{ _recentPost.createdAt|date('d/m') }}
  24.                     -
  25.                     <a class="news-link text-black" href="{{ path('app_forum_forum_post_show',{
  26.                         'country' : _recentPost.topic.countryMin,
  27.                         'topicslug' : _recentPost.topic.slug,
  28.                         'slug' : _recentPost.slug
  29.                     }) }}">
  30.                         <b>{{ _recentPost.title|u.truncate(40, '...') }}</b>
  31.                     </a>
  32.                 </li>
  33.                 {% if loop.index != _total_recentPosts %}
  34.                     <div class="margin-top-5 margin-bottom-5" style="border-bottom: 0.1rem solid #e4e4e4; width: 60%"></div>
  35.                 {% endif %}
  36.             {% endfor %}
  37.         </ul>
  38.     </div>
  39. </div>