198ca6c0
Alexey Boroda
-Animations ready...
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<?php
/**
* @var View $this
* @var array $data
* @var array $browsers
* @var array $cityes
* @var array $countries
*/
use yii\web\View;
use yiister\gentelella\widgets\Panel;
?>
<div class="row">
<?php $panel = Panel::begin(
[
'header' => 'Instruction',
]
) ?>
<div class="jumbotron">
<h1>Hello, world!</h1>
<p>This is a simple hero unit, a simple jumbotron-style component for calling extra attention to featured content or information.</p>
</div>
<?php $panel::end(); ?>
</div>
|