Your IP : 216.73.216.79


Current Path : /var/www/html/ebook/backend/views/layouts/
Upload File :
Current File : /var/www/html/ebook/backend/views/layouts/empty.php

<?php

/* @var $this \yii\web\View */
/* @var $content string */

use yii\helpers\Html;
use common\widgets\inspinia\InspiniaAsset;

$assetBundle = InspiniaAsset::register($this);

$this->title = Yii::t('app', 'Content Management System');
?>
<?php $this->beginPage() ?><!DOCTYPE html>
    <html lang="<?= Yii::$app->language ?>">
    <head>
        <meta charset="<?= Yii::$app->charset ?>">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <?= Html::tag('title', Html::encode($this->title)); ?>
        <!-- Favicon -->
        <link rel="shortcut icon" href="<?= yii\helpers\Url::to('@web/') ?>favicon.ico?<?= time() ?>">
      
        <?= Html::csrfMetaTags() ?>
        <?php $this->head() ?>
    </head>
    <body class="gray-bg">
    <?php $this->beginBody() ?>
        
        <!-- Content view  -->
        <?= $content ?>

    <?php $this->endBody() ?>
    </body>
    </html>
<?php $this->endPage() ?>