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.
|
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- ?>
- <dl id="dl-<?= /* @noEscape */ $id ?>" class="accordion">
- <?php foreach ($sections as $sectionId => $section) : ?>
- <dt id="dt-<?= /* @noEscape */ $id ?>-<?= /* @noEscape */ $sectionId ?>">
- <strong><?= $block->escapeHtml($section['title']) ?></strong>
- </dt>
- <dd id="dd-<?= /* @noEscape */ $id ?>-<?= /* @noEscape */ $section['id'] ?>" class="section-menu <?= !empty($section['active']) ? 'open' : '' ?>">
- <ul>
- <?php foreach ($section['children'] as $menuId => $menuItem) : ?>
- <li id="li-<?= /* @noEscape */ $id ?>-<?= /* @noEscape */ $sectionId ?>-<?= /* @noEscape */ $menuId ?>">
- <a href="#" title="<?= $block->escapeHtmlAttr($menuItem['title']) ?>">
- <span><?= $block->escapeHtml($menuItem['label']) ?></span>
- </a>
- </li>
- <?php endforeach ?>
- </ul>
- </dd>
- <?php endforeach ?>
- </dl>
|