12345678910111213 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- // @codingStandardsIgnoreFile
- /** @var \Magento\Framework\View\Element\Template $block */
- ?>
- <p><?= $block->escapeHtml(__('Your current currency is: %1.', $currency->getCode())) ?></p>
- <p><a href="<?= $block->escapeUrl($block->getBaseUrl()) ?>" class="action continue"><span><?= $block->escapeHtml(__('Continue')) ?></span></a></p>
|