templates/Context/Shop/Menu/country.html.twig line 1

Open in your IDE?
  1. <div class="ui simple right dropdown item">
  2.     <span class="text text-sm">{{ 'app.ui.by_Country'|trans }}</span>
  3.     <span class="material-symbols-outlined">expand_more</span>
  4.     <div class="menu hyfindr-column-menu countries" {% if countries|length < 24 %}style="grid-template-rows: repeat({{ countries|length }}, 1fr)"{% endif %}>
  5.         {% for country in countries %}
  6.             <a href="{{ path('open_marketplace_shop_country_page', {'code': country.code}) }}" class="item">{{ country.name }}</a>
  7.         {% endfor %}
  8.     </div>
  9. </div>