icingaweb2/application/layouts/scripts/body.phtml

25 lines
668 B
PHTML
Raw Normal View History

<?php echo $this->render('parts/topbar.phtml') ?>
<div class="row">
<!-- Only required for left/right tabs -->
2014-02-03 17:03:05 +01:00
<div class="col-sm-12 col-xs-12 col-md-2 col-lg-2" id="menu">
<?php echo $this->render('parts/navigation.phtml') ?>
</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">
2014-01-24 12:19:18 +01:00
Icinga Web 2 &copy; 2014 Icinga Team
</div>
</div>
</div>
2013-10-23 15:10:33 +02:00
</div>