oms-Knowledgebase/Theme/Backend/wiki-dashboard.tpl.php
2017-06-24 10:51:43 +02:00

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>