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