template.php 2.21 KB
<?php

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

use yii\helpers\Html;
use backend\assets\TemplateAsset;
use backend\assets\Ie9Asset;
use yii\web\View;
use backend\widgets\Alert;

TemplateAsset::register($this);
Ie9Asset::register($this);
?>
<?php $this->beginPage() ?>
<!DOCTYPE html>
<html lang="<?= Yii::$app->language ?>">
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
        <meta name="description" content="">
        <meta name="author" content="">
        <?= Html::csrfMetaTags() ?>
        <title><?= Html::encode($this->title) ?></title>
        <?php $this->head() ?>
    </head>

    <body>
    <?php $this->beginBody() ?>
        
        <?php echo $this->render('topmenu');?>
        
        <section>
            <div class="mainwrapper">
                <?php echo $this->render('leftmenu');?>
                
                <div class="mainpanel">
                    <div class="pageheader">
                        <div class="media">
                            <div class="pageicon pull-left">
                                <i class="fa fa-home"></i>
                            </div>
                            <div class="media-body">
                                <ul class="breadcrumb">
                                    <li><a href=""><i class="glyphicon glyphicon-home"></i></a></li>
                                    <li><?php echo $this->params['main_title']?></li>
                                </ul>
                                <h4><?php echo $this->params['sub_title']?></h4>
                            </div>
                        </div><!-- media -->
                    </div><!-- pageheader -->
                    
                    <div class="contentpanel">                        
                        <?php echo Alert::widget() ?>
                        <?php echo $content;?>
                    </div><!-- contentpanel -->
                    
                </div><!-- mainpanel -->
            </div><!-- mainwrapper -->
        </section>


        <?php echo $this->render('foot');?>
        

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