oms-Knowledgebase/Theme/Backend/wiki-doc.tpl.php
2019-04-27 12:05:33 +02:00

20 lines
448 B
PHP

<?php declare(strict_types=1);
$doc = $this->getData('doc');
/**
* @var \phpOMS\Views\View $this
*/
echo $this->getData('nav')->render();
?>
<div class="row">
<div class="col-xs-12">
<section class="box wf-100">
<header><h1><?= $this->printHtml($doc->getTitle()); ?></h1></header>
<article>
<?= $this->printHtml($doc->getDoc()); ?>
</article>
</section>
</div>
</div>