Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
page.phtml
Go to the documentation of this file.
1 <?php
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>