parent
a91961284d
commit
83c12cfb2e
|
@ -0,0 +1,19 @@
|
|||
<?php if ($docHtml === null): ?>
|
||||
<p>No documentation available.</p>
|
||||
<?php else: ?>
|
||||
<div class="toc">
|
||||
<?= $this->partial(
|
||||
'layout/menu.phtml',
|
||||
'default',
|
||||
array(
|
||||
'items' => $docToc->getChildren(),
|
||||
'sub' => false,
|
||||
'url' => ''
|
||||
)
|
||||
);
|
||||
?>
|
||||
</div>
|
||||
<div class="doc">
|
||||
<?= $docHtml ?>
|
||||
</div>
|
||||
<?php endif ?>
|
Loading…
Reference in New Issue