templates/ProfileNameList/_popular_names.html.twig line 1

Open in your IDE?
  1. {% if popularNames is defined and popularNames|length > 1 %}
  2.     <div class="profile-name-popular mb-3">
  3.         {% for item in popularNames %}
  4.             <a href="{{ item.url }}">{{ item.name }}</a>{% if not loop.last %} / {% endif %}
  5.         {% endfor %}
  6.     </div>
  7. {% endif %}