File size: 827B
<?php
use App\Models\Story;
use MotorORM\CollectionPaginate;
/** @var string $tag */
/** @var CollectionPaginate|Story[] $stories */
?>
<?php $this->layout('layout') ?>
<?php $this->start('title') ?><?= $tag ?> (Стр. <?= $stories->currentPage() ?>)<?php $this->stop() ?>
<?php $this->start('description') ?><?= $tag ?> (Стр. <?= $stories->currentPage() ?>)<?php $this->stop() ?>
<?php $this->start('header') ?>
<h1>Поиск по тегу: <?= $tag ?></h1>
<?php $this->stop() ?>
<?php $this->start('breadcrumb') ?>
<nav>
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="/"><i class="bi bi-house-door"></i></a></li>
<li class="breadcrumb-item active">Поиск по тегу</li>
</ol>
</nav>
<?php $this->stop() ?>
<?= $this->fetch('stories/_list', compact('stories')) ?>