Logo white

Yarik / artbox-basic

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • artbox-basic
  • backend
  • views
  • site
  • index.php
  • -Analytics in process
    c8500c2f
    Alexey Boroda authored
    2017-03-24 18:15:14 +0200  
    Browse Code ยป
index.php 459 Bytes
Edit Raw Blame History
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 27 28 29 30 31 32 33 34
<?php
    
    /**
     * @var View $this
     */
    
    use artbox\gentelella\widgets\XPanel;
    use yii\web\View;
    
    $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(); ?>