adj. frontend uri handling of query/fragment

This commit is contained in:
Dennis Eichhorn 2020-07-29 21:04:10 +02:00
parent 90e7251b9b
commit 66395d31a4

View File

@ -7,9 +7,9 @@ echo $this->getData('nav')->render(); ?>
<?php foreach ($boards as $board) : ?>
<div class="col-xs-12 col-sm-6 col-lg-3">
<a href="<?= $this->printHtml(\phpOMS\Uri\UriFactory::build('{/prefix}kanban/board?{?}&id=' . $board->getId())); ?>">
<section class="box wf-100">
<header><h1><?= $this->printHtml($board->getName()); ?></h1></header>
<div class="inner">
<section class="portlet">
<div class="portlet-head"><?= $this->printHtml($board->getName()); ?></div>
<div class="portlet-body">
<?= $this->printHtml($board->getDescription()); ?>
</div>
</section>