d1f8bd40
Alexey Boroda
first commit
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<?php
use yii\helpers\{
Html
};
?>
<?= \thread\modules\seo\widgets\breadcrumbs\Breadcrumbs::widget([
'links' => $this->context->breadcrumbs ?? []
])
. Html::tag('div', Yii::t('front', 'search for objects'), [
'class' => 'title title-1'
]);
?>
<div class="page-title title-1" style="line-height: 1; margin: 5px;">
<?= Yii::t('front', 'Search question') ?>:
<span>«</span><?= $condition; ?><span>»</span>
</div>
<?php
if (!empty($condition)) {
echo Yii::t('front', 'At your request not what is not found try different keywords');
} else {
echo Yii::t('front', 'Nothing found');
}
|