Blame view

backend/views/site/index.php 459 Bytes
1755c393   Yarik   Basic template in...
1
  <?php
567888e8   Yarik   Widgets
2
      
c8500c2f   Alexey Boroda   -Analytics in pro...
3
4
5
      /**
       * @var View $this
       */
567888e8   Yarik   Widgets
6
      
c8500c2f   Alexey Boroda   -Analytics in pro...
7
8
      use artbox\gentelella\widgets\XPanel;
      use yii\web\View;
3cae1b75   Alexey Boroda   -Analytics almost...
9
      
c8500c2f   Alexey Boroda   -Analytics in pro...
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
      $this->title = 'Artbox !';
  
  ?>
  
  <?php $panel = XPanel::begin(
      [
          'title'   => 'Hello!',
          'toolbar' => false,
      ]
  ); ?>
  
  <div class="jumbotron">
    <h1>Hello</h1>
    <p>
      Configuration info
    
    <ul>
      <li>Step one</li>
      <li>Step 2</li>
      <li>Finish !</li>
    </ul>
    </p>
  </div>
  
  <?php $panel::end(); ?>