You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
683 B
34 lines
683 B
6 years ago
|
<?php
|
||
|
use app\components\widgets\Alert;
|
||
|
use yii\widgets\Breadcrumbs;
|
||
|
|
||
|
/**
|
||
|
* @var $this \yii\web\View
|
||
|
* @var $content string
|
||
|
*/
|
||
|
|
||
|
$this->title = Yii::$app->settings->data['system']['meta_title'];
|
||
|
?>
|
||
|
|
||
|
<?php $this->beginContent('@app/themes/sport/template/layouts/main.php') ?>
|
||
|
|
||
|
<div class="row">
|
||
|
<div class="main-content col-sm-12">
|
||
|
<!-- BREADCRUMBS -->
|
||
|
<div class="breadcrumb_wrap">
|
||
|
<?= Breadcrumbs::widget([
|
||
|
'links' => isset($this->params['breadcrumbs']) ? $this->params['breadcrumbs'] : [],
|
||
|
]) ?>
|
||
|
</div>
|
||
|
|
||
|
<?= Alert::widget() ?>
|
||
|
|
||
|
<?= $content ?>
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<?php $this->endContent() ?>
|
||
|
|
||
|
|