templates/modules/customer-list.html.twig line 1

Open in your IDE?
  1. {% if module.data is not empty %}
  2. <ul class="catlist">
  3.     {% for customer in module.data %}
  4.     {% if customer.getDirectoryContent() %}
  5.         <li><a href="/directory/{{ customer.getDirectoryContent().getSlug() }}/content/{{ module.ctype }}" title="{{ customer.getTitle() }}">{{ customer.getTitle() }}</a></li>
  6.     {% endif %}
  7.     {% endfor %}
  8. </ul>
  9. {% endif %}