mirror of
https://github.com/Karaka-Management/oms-Knowledgebase.git
synced 2026-01-19 12:58:42 +00:00
22 lines
486 B
PHP
22 lines
486 B
PHP
<?php
|
|
|
|
$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>
|
|
<div class="inner">
|
|
<article>
|
|
<?= $this->printHtml($doc->getDoc()); ?>
|
|
</article>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
</div>
|