mirror of
https://github.com/Karaka-Management/oms-Knowledgebase.git
synced 2026-01-24 07:18:40 +00:00
14 lines
335 B
PHP
14 lines
335 B
PHP
<?php
|
|
$categories = $this->getData('categories');
|
|
echo $this->getData('nav')->render(); ?>
|
|
|
|
<div class="row">
|
|
<div class="col-xs-12">
|
|
<?php foreach($categories as $category) : ?>
|
|
<section class="box wf-100">
|
|
<?= $category->getName(); ?>
|
|
</section>
|
|
<?php endforeach; ?>
|
|
</div>
|
|
</div>
|