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.
- */
-
- /**
- * @var $block \Magento\Theme\Block\Html\Title
- */
- $cssClass = $block->getCssClass() ? ' ' . $block->getCssClass() : '';
- $titleHtml = '';
- if (trim($block->getPageHeading())) {
- $titleHtml = '<span class="base" data-ui-id="page-title-wrapper" '
- . $block->getAddBaseAttribute()
- . '>'
- . $block->escapeHtml($block->getPageHeading())
- . '</span>';
- }
- ?>
- <?php if ($titleHtml) : ?>
- <div class="page-title-wrapper<?= $block->escapeHtmlAttr($cssClass) ?>">
- <h1 class="page-title"
- <?php if ($block->getId()) : ?> id="<?= $block->escapeHtmlAttr($block->getId()) ?>" <?php endif; ?>
- <?php if ($block->getAddBaseAttributeAria()) : ?>
- aria-labelledby="<?= $block->escapeHtmlAttr($block->getAddBaseAttributeAria()) ?>"
- <?php endif; ?>>
- <?= /* @noEscape */ $titleHtml ?>
- </h1>
- <?= $block->getChildHtml() ?>
- </div>
- <?php endif; ?>
|