Created
September 23, 2015 05:54
-
-
Save mgerasimchuk/41a3b64d4a2211228d59 to your computer and use it in GitHub Desktop.
main
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--сворачиваем левый навигатор в зависимости от того авторизирован ли пользователь--> | |
<?= (Yii::$app->user->isGuest) ? '<body class = "skin-green sidebar-collapse">' : '<body class = "skin-green">' ?> | |
<?php $this->beginBody() ?> | |
<div class="wrap"> | |
<!--в зависимости от того, авторизирован ли пользователь, добавляем соответствующий шаблон шапки--> | |
<?= (Yii::$app->user->isGuest) ? $this->render('header-guest', ['baseUrl' => $baseUrl]) : $this->render('header', ['baseUrl' => $baseUrl]) ?> | |
<?= (Yii::$app->user->isGuest) ? null : $this->render('left-menu', ['baseUrl' => $baseUrl]) ?> | |
<?= $this->render('content', ['content' => $content]) ?> | |
<?= $this->render('footer', ['baseUrl' => $baseUrl]) ?> | |
<?/*= $this->render('rightside', ['baseUrl' => $baseUrl]) */?> | |
<div class="control-sidebar-bg"></div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment