Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
 

47 строки
1.8 KiB

  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. ?>
  7. <?php
  8. /**
  9. * Category layered navigation
  10. *
  11. * @var $block \Magento\LayeredNavigation\Block\Navigation
  12. */
  13. ?>
  14. <?php if ($block->canShowBlock()) : ?>
  15. <div class="block filter">
  16. <div class="block-title filter-title">
  17. <strong><?= $block->escapeHtml(__('Shop By')) ?></strong>
  18. </div>
  19. <div class="block-content filter-content">
  20. <?= $block->getChildHtml('state') ?>
  21. <?php if ($block->getLayer()->getState()->getFilters()) : ?>
  22. <div class="block-actions filter-actions">
  23. <a href="<?= $block->escapeUrl($block->getClearUrl()) ?>" class="action clear filter-clear"><span><?= $block->escapeHtml(__('Clear All')) ?></span></a>
  24. </div>
  25. <?php endif; ?>
  26. <?php $wrapOptions = false; ?>
  27. <?php foreach ($block->getFilters() as $filter) : ?>
  28. <?php if (!$wrapOptions) : ?>
  29. <strong role="heading" aria-level="2" class="block-subtitle filter-subtitle"><?= $block->escapeHtml(__('Shopping Options')) ?></strong>
  30. <dl class="filter-options" id="narrow-by-list">
  31. <?php $wrapOptions = true;
  32. endif; ?>
  33. <?php if ($filter->getItemsCount()) : ?>
  34. <dt role="heading" aria-level="3" class="filter-options-title"><?= $block->escapeHtml(__($filter->getName())) ?></dt>
  35. <dd class="filter-options-content"><?= /* @noEscape */ $block->getChildBlock('renderer')->render($filter) ?></dd>
  36. <?php endif; ?>
  37. <?php endforeach; ?>
  38. <?php if ($wrapOptions) : ?>
  39. </dl>
  40. <?php endif; ?>
  41. </div>
  42. </div>
  43. <?php endif; ?>