15 lines
309 B
PHP
15 lines
309 B
PHP
|
<?php
|
||
|
/* @var $this SiteController */
|
||
|
|
||
|
$this->pageTitle=Yii::app()->name;
|
||
|
?>
|
||
|
|
||
|
<h1>Welcome to <i><?php echo CHtml::encode(Yii::app()->name); ?></i></h1>
|
||
|
|
||
|
|
||
|
<?php $this->widget('zii.widgets.CListView', array(
|
||
|
'dataProvider'=>$dataProvider,
|
||
|
'itemView'=>'_view',
|
||
|
'template'=>"{items}\n{pager}",
|
||
|
)); ?>
|