meta.phtml 465 B

123456789101112131415
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. // @codingStandardsIgnoreFile
  7. ?>
  8. <?php if ($pageData->getPageMetaKeywords()): ?>
  9. <meta name="keywords" content="<?= /* @noEscape */ $pageData->getPageMetaKeywords() ?>"/>
  10. <?php endif; ?>
  11. <?php if ($pageData->getPageMetaDescription()): ?>
  12. <meta name="description" content="<?= /* @noEscape */ $pageData->getPageMetaDescription() ?>"/>
  13. <?php endif; ?>