templates/menu/menu_booking_items.html.twig line 1

Open in your IDE?
  1. {% for item in items %}
  2.     {% set itemRoute = item.link ? : url(item.route) %}
  3.     {% set target = item.openNewWindow ? 'target=_blank' : '' %}
  4.     <li class="submenu--subitem">
  5.         <a class="js-go-page" {{ target }} href="{{ itemRoute }}">{{ item.text | lower | replace({'artiem': '<strong>artiem</strong>'}) | raw }}</a>
  6.     </li>
  7. {% endfor %}