| Current Path : /var/www/clients/client3/web2/web/setup/view/layout/ |
| Current File : /var/www/clients/client3/web2/web/setup/view/layout/layout.phtml |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
/**
* @var \Laminas\View\Renderer\PhpRenderer $this
*/
?>
<?= $this->doctype() ?>
<!--[if !IE]><!-->
<html lang="en">
<!--<![endif]-->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Magento</title>
<?= $this->headLink()
->appendStylesheet($this->basePath() . '/pub/styles/setup.css');
?>
<?= $this->headScript()
->appendFile($this->basePath() . '/pub/scripts/main.js')
?>
<link
rel="icon"
type="image/x-icon"
href="<?= $this->basePath() ?>/pub/images/favicon/favicon.ico"
sizes="16x16">
<link
rel="icon"
type="image/png"
href="<?= $this->basePath() ?>/pub/images/favicon/favicon-96x96.png"
sizes="96x96">
<link
rel="icon"
type="image/png"
href="<?= $this->basePath() ?>/pub/images/favicon/favicon-32x32.png"
sizes="32x32">
<link
rel="icon"
type="image/png"
href="<?= $this->basePath() ?>/pub/images/favicon/favicon-16x16.png"
sizes="16x16">
<?= $this->inlineScript() ?>
<style>
a.white-space-pre-line {
white-space: pre-line;
}
</style>
</head>
<body>
<?= $this->content ?>
</body>
</html>