12 lines
488 B
PHP
12 lines
488 B
PHP
<?php
|
|
use yii\helpers\Html;
|
|
use yii\helpers\Url;
|
|
$this->registerJsFile("comon/a.js");
|
|
?>
|
|
<div class="main">
|
|
<div class="container">
|
|
<?=Html::a("test",Yii::$app->urlManager->createUrl(['site/index']), ['alt' => 'brand', 'class' => 'img-responsive']);?>
|
|
<?=Html::a("tourl",Url::to(['site/index', 'id' => 42]), ['alt' => 'brand', 'class' => 'img-responsive']);?>
|
|
<?=Html::a("home",Url::home(), ['alt' => 'brand', 'class' => 'img-responsive']);?>
|
|
</div>
|
|
</div>
|