123456789101112131415161718192021 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- ?>
- <?php if ($block->getCustomerId()) :?>
- <span>
- <a <?= /* @escapeNotVerified */ $block->getLinkAttributes()?>><?= $block->escapeHtml(__('Not you?'));?></a>
- </span>
- <?php endif;?>
- <script type="application/javascript">
- window.persistent = <?= /* @noEscape */ $block->getConfig(); ?>;
- </script>
- <script type="text/x-magento-init">
- {
- "li.greet.welcome > span.not-logged-in": {
- "Magento_Persistent/js/view/additional-welcome": {}
- }
- }
- </script>
|