Make categories links

This commit is contained in:
Dennis Eichhorn 2017-07-16 20:38:29 +02:00
parent 88cdd12b94
commit fe7b536143

View File

@ -5,8 +5,10 @@ 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 class="box wf-100 wiki-list">
<div class="inner">
<a href="<?= \phpOMS\Uri\UriFactory::build('{/base}/{/lang}/backend/wiki/category?{?}&id=' . $category->getId()) ?>"><?= $category->getName(); ?></a>
</div>
</section>
<?php endforeach; ?>
</div>