1234567891011121314151617181920 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- // @codingStandardsIgnoreFile
- ?>
- <!doctype html>
- <html <?= /* @escapeNotVerified */ $htmlAttributes ?>>
- <head <?= /* @escapeNotVerified */ $headAttributes ?>>
- <?= /* @escapeNotVerified */ $requireJs ?>
- <?= /* @escapeNotVerified */ $headContent ?>
- <?= /* @escapeNotVerified */ $headAdditional ?>
- </head>
- <body data-container="body" data-mage-init='{"loaderAjax": {}, "loader": { "icon": "<?= /* @escapeNotVerified */ $loaderIcon ?>"}}' <?= /* @escapeNotVerified */ $bodyAttributes ?>>
- <?= /* @escapeNotVerified */ $layoutContent ?>
- </body>
- </html>
|