84b2aead
Administrator
add active menu
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<?php
use yii\helpers\Url;
use yii\widgets\Breadcrumbs;
?>
<?php
$this->title = $model->name;
?>
<nav class="bread-crumbs">
<?= Breadcrumbs::widget([
'links' => [
['label'=>'Акции','url'=>['news/index']],
$model->name
],
]) ?>
<div class="both"></div>
</nav>
<div class="layout">
<div class="content">
<h1><?=$model->name?></h1>
<img src="<?=Yii::$app->request->baseUrl.'/storage/articles/big/'.$model->image?>" width="400" height="400" border="0" align="left" class='pic' />
<?=$model->body?>
</div>
</div>
|