c7f222e2
Artem
first
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php
use yii\helpers\Html;
use yii\bootstrap\ActiveForm;
/* @var $this yii\web\View */
/* @var $form yii\bootstrap\ActiveForm */
/* @var $model \frontend\models\SignupForm */
$this->registerCssFile('/css/spots.css');
$this->registerJsFile('/js/jquery.scrollbox.min.js');
$this->title = 'Статьи';
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="block-school-spots-wrap correct_index_display_block">
<?php
echo \yii\widgets\ListView::widget( [
'dataProvider' => $dataProvider,
'itemView'=>'_one_article',
'summary'=>'',
] );
?>
</div>
|