show.php 837 Bytes
<?php
use yii\helpers\Url;
use yii\widgets\Breadcrumbs;
?>
<?php
$this->title = $model->name;

?>

            <nav class="bread-crumbs">
            <?= Breadcrumbs::widget([
                'links' => [
                            ['label'=>'Акции','url'=>['event/index']],
                    $model->name
                            ],
            ]) ?>
                            <div class="both"></div>
            </nav>

<div class="layout">
    
    <div class="content">
	<h1><?=$model->name?></h1>
            <?php if($model->image){?>
                <?= \common\components\artboximage\ArtboxImageHelper::getImage($model->imageUrl, 'product_view', ['align' => 'left'])?>
            <?php }?>
            <?=$model->body?>
    </div>                                    
                                        
</div>