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.
28 lines
612 B
28 lines
612 B
<?php $this->beginContent('@frontend/web/themes/start/layouts/main.php') ?> |
|
|
|
<!-- Page Content --> |
|
<div class="container"> |
|
|
|
<?= \yii\widgets\Breadcrumbs::widget([ |
|
'tag' => 'ul', |
|
'itemTemplate' => '<li class="breadcrumb-item">{link}</li>' . "\n", |
|
'activeItemTemplate' => '<li class="breadcrumb-item active">{link}</li>' . "\n", |
|
'links' => isset($this->params['breadcrumbs']) ? $this->params['breadcrumbs'] : [], |
|
]) ?> |
|
|
|
<div class="row"> |
|
|
|
<!-- Page Content --> |
|
<div class="col-md-12"> |
|
|
|
<?= $content ?> |
|
|
|
</div> |
|
|
|
</div> |
|
<!-- /.row --> |
|
|
|
</div> |
|
<!-- /.container --> |
|
<?php $this->endContent() ?> |
|
|
|
|