page.phtml 719 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. ?>
  7. <!doctype html>
  8. <html xmlns="http://www.w3.org/1999/xhtml" >
  9. <head>
  10. <title><?= $this->pageTitle ?></title>
  11. <base href="<?= $this->getViewFileUrl() ?>" />
  12. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  13. <meta name="robots" content="*"/>
  14. <link rel="stylesheet" href="css/styles.css" type="text/css" />
  15. <link rel="icon" href="images/favicon.ico" type="image/x-icon" />
  16. <link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon" />
  17. </head>
  18. <body>
  19. <main class="page-main">
  20. <?php require_once $contentTemplate; ?>
  21. </main>
  22. </body>
  23. </html>