12345678910111213141516171819202122232425262728293031 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- // @codingStandardsIgnoreFile
- ?>
- <?php
- /**
- * @see \Magento\Backend\Block\Page\Notices
- */
- ?>
- <?php if ($block->displayNoscriptNotice()): ?>
- <noscript>
- <div class="messages">
- <div class="message message-warning message-noscript">
- <strong><?= /* @escapeNotVerified */ __('JavaScript may be disabled in your browser.') ?></strong>
- <?= /* @escapeNotVerified */ __('To use this website you must first enable JavaScript in your browser.') ?>
- </div>
- </div>
- </noscript>
- <?php endif; ?>
- <?php if ($block->displayDemoNotice()): ?>
- <div class="messages">
- <div class="message message-warning message-demo-mode">
- <?= /* @escapeNotVerified */ __('This is only a demo store. You can browse and place orders, but nothing will be processed.') ?>
- </div>
- </div>
- <?php endif; ?>
|