28 lines
848 B
PHTML
Executable File
28 lines
848 B
PHTML
Executable File
<?php echo $this->render('parts/topbar.phtml') ?>
|
|
<div class="row">
|
|
<!-- Only required for left/right tabs -->
|
|
<div class="col-sm-12 col-xs-12 col-md-2 col-lg-2">
|
|
<?= $this->partial('layout/menu.phtml', 'default', array(
|
|
'url' => \Icinga\Web\Url::fromRequest()->getRelativeUrl(),
|
|
'items' => \Icinga\Web\Menu::fromConfig()->getChildren(),
|
|
'sub' => false
|
|
)); ?>
|
|
</div>
|
|
|
|
<div class="col-sm-12 col-xs-12 col-md-10 col-lg-10">
|
|
<?= $this->mainDetail($this->render('inline.phtml'), $this->layout()->detailContent); ?>
|
|
</div>
|
|
|
|
</div>
|
|
<br/>
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<!-- Make some space at the end of the page -->
|
|
<div class="panel">
|
|
<div class="panel-body text-center">
|
|
Icinga Web 2 © 2014 Icinga Team
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|