38828295
Karnovsky A
-
|
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
use yii\widgets\Breadcrumbs;
use yii\grid\GridView;
$this->params['breadcrumbs'][] = Yii::t('product', 'Brands');
$this->params['seo']['seo_text'] = 'Brands SEO-text';
$this->params['seo']['h1'] = Yii::t('product', 'Brands');
$this->params['seo']['description'] = 'Brands DESCRIPTION';
$this->params['seo']['fields']['name'] = 'Brands NAME FROM FIELD';
$this->params['seo']['key']= 'brands';
?>
|
84c4457e
Eugeny Galkovskiy
123
|
14
|
|
38828295
Karnovsky A
-
|
15
16
17
18
19
20
|
<div class="loyout">
<h1><?= $this->params['seo']['h1']?></h1>
<ul class="brends_list">
<?php foreach($dataProvider->models as $brand) :?>
<li>
|
ac8ab861
Administrator
20.07.16
|
21
|
<a href="<?= \yii\helpers\Url::to(['catalog/brand', 'brand' => $brand->alias])?>"><?= \common\components\artboximage\ArtboxImageHelper::getImage($brand->imageUrl, 'brand_item')?></a>
|
38828295
Karnovsky A
-
|
22
|
<br>
|
ac8ab861
Administrator
20.07.16
|
23
|
<a href="<?= \yii\helpers\Url::to(['catalog/brand', 'brand' => $brand->alias])?>" class="name"><?= $brand->name?></a>
|
38828295
Karnovsky A
-
|
24
25
26
27
28
|
</li>
<?php endforeach?>
</ul>
<div class="both"></div>
</div>
|