2014-02-03 15:39:53 +01:00
|
|
|
<?php if ($html === null): ?>
|
2014-02-11 15:27:42 +01:00
|
|
|
<p>No documentation available.</p>
|
2014-02-03 15:39:53 +01:00
|
|
|
<?php else: ?>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-sm-12 col-xs-12 col-md-2 col-lg-2">
|
2014-02-05 12:35:44 +01:00
|
|
|
<?= $this->partial(
|
|
|
|
'layout/menu.phtml',
|
|
|
|
'default',
|
|
|
|
array(
|
|
|
|
'items' => $toc->getChildren(),
|
|
|
|
'sub' => false,
|
|
|
|
'url' => ''
|
|
|
|
)
|
|
|
|
);
|
|
|
|
?>
|
2014-02-03 15:39:53 +01:00
|
|
|
</div>
|
|
|
|
<div class="col-sm-12 col-xs-12 col-md-10 col-lg-10">
|
|
|
|
<?= $html ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?php endif ?>
|