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.
13 lines
377 B
13 lines
377 B
<?PHP
|
|
|
|
use yii\widgets\Breadcrumbs;
|
|
?>
|
|
<?php if (!empty($this->title)): ?>
|
|
<h1><?= $this->title ?><?php if (isset($this->params['subtitle'])): ?><small><?= $this->params['subtitle'] ?></small><?php endif ?></h1>
|
|
<?php endif ?>
|
|
<?php
|
|
echo Breadcrumbs::widget([
|
|
'tag' => 'ol',
|
|
'links' => isset($this->params['breadcrumbs']) ? $this->params['breadcrumbs'] : [],
|
|
]);
|
|
?>
|