You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

16 lines
531 B

  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. ?>
  7. <ul class="dropdown-menu">
  8. <?php foreach ($items as $item) : ?>
  9. <li id="<?= $block->escapeHtmlAttr($item['id']) ?>" class="item">
  10. <a href="<?= $block->escapeUrl($item['url']) ?>" class="title"><?= $block->escapeHtml($item['name']) ?></a>
  11. <div class="type"><?= $block->escapeHtml($item['type']) ?></div>
  12. <?= $block->escapeHtml($item['description']) ?>
  13. </li>
  14. <?php endforeach ?>
  15. </ul>