You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
297 B
19 lines
297 B
6 years ago
|
<?php
|
||
|
/**
|
||
|
* Created by Error202
|
||
|
* Date: 22.08.2018
|
||
|
*/
|
||
|
|
||
|
use yii\helpers\Html;
|
||
|
|
||
|
/**
|
||
|
* @var $this \yii\web\View
|
||
|
* @var $banner \common\modules\banners\entities\Banner;
|
||
|
*/
|
||
|
|
||
|
?>
|
||
|
|
||
|
<?= Html::a(Html::img('@static/origin/banners/' . $banner->image), $banner->url, [
|
||
|
'target' => $banner->target
|
||
|
]) ?>
|