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.

12 lines
377 B

  1. <?PHP
  2. use yii\widgets\Breadcrumbs;
  3. ?>
  4. <?php if (!empty($this->title)): ?>
  5. <h1><?= $this->title ?><?php if (isset($this->params['subtitle'])): ?><small><?= $this->params['subtitle'] ?></small><?php endif ?></h1>
  6. <?php endif ?>
  7. <?php
  8. echo Breadcrumbs::widget([
  9. 'tag' => 'ol',
  10. 'links' => isset($this->params['breadcrumbs']) ? $this->params['breadcrumbs'] : [],
  11. ]);
  12. ?>