layout.phtml 3.84 KB
Newer Older
Ketan's avatar
Ketan committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
?>
<?= $this->doctype() ?>
<!--[if !IE]><!-->
<html lang="en" ng-app="magentoSetup">
<!--<![endif]-->
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>{{$state.current.title}}</title>
    <?= $this->headLink()
        ->appendStylesheet($this->basePath() . '/pub/styles/setup.css');
    ?>
    <?= $this->headScript()
        ->appendFile($this->basePath() . '/pub/angular/angular.min.js')
        ->appendFile($this->basePath() . '/pub/angular-ng-storage/angular-ng-storage.min.js')
        ->appendFile($this->basePath() . '/pub/angular-ng-dialog/angular-ng-dialog.min.js')
        ->appendFile($this->basePath() . '/pub/angular-clickout/angular-clickout.min.js')
        ->appendFile($this->basePath() . '/pub/angular-ui-router/angular-ui-router.min.js')
        ->appendFile($this->basePath() . '/pub/angular-ui-bootstrap/angular-ui-bootstrap.min.js')
        ->appendFile($this->basePath() . '/pub/angular-sanitize/angular-sanitize.min.js')
        ->appendFile($this->basePath() . '/pub/magento/setup/app.js')
        ->appendFile($this->basePath() . '/pub/magento/setup/main.js')
        ->appendFile($this->basePath() . '/pub/magento/setup/landing.js')
        ->appendFile($this->basePath() . '/pub/magento/setup/module-grid.js')
        ->appendFile($this->basePath() . '/pub/magento/setup/extension-grid.js')
        ->appendFile($this->basePath() . '/pub/magento/setup/readiness-check.js')
        ->appendFile($this->basePath() . '/pub/magento/setup/add-database.js')
        ->appendFile($this->basePath() . '/pub/magento/setup/web-configuration.js')
        ->appendFile($this->basePath() . '/pub/magento/setup/customize-your-store.js')
        ->appendFile($this->basePath() . '/pub/magento/setup/create-admin-account.js')
        ->appendFile($this->basePath() . '/pub/magento/setup/install.js')
        ->appendFile($this->basePath() . '/pub/magento/setup/success.js')
        ->appendFile($this->basePath() . '/pub/magento/setup/create-backup.js')
        ->appendFile($this->basePath() . '/pub/magento/setup/complete-backup.js')
        ->appendFile($this->basePath() . '/pub/magento/setup/data-option.js')
        ->appendFile($this->basePath() . '/pub/magento/setup/start-updater.js')
        ->appendFile($this->basePath() . '/pub/magento/setup/updater-success.js')
        ->appendFile($this->basePath() . '/pub/magento/setup/select-version.js')
        ->appendFile($this->basePath() . '/pub/magento/setup/home.js')
        ->appendFile($this->basePath() . '/pub/magento/setup/auth-dialog.js')
        ->appendFile($this->basePath() . '/pub/magento/setup/remove-dialog.js')
        ->appendFile($this->basePath() . '/pub/magento/setup/system-config.js')
        ->appendFile($this->basePath() . '/pub/magento/setup/marketplace-credentials.js')
        ->appendFile($this->basePath() . '/pub/magento/setup/install-extension-grid.js')
        ->appendFile($this->basePath() . '/pub/magento/setup/update-extension-grid.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>