mirror of
https://github.com/Karaka-Management/oms-Kanban.git
synced 2026-01-11 11:28:42 +00:00
19 lines
653 B
PHP
Executable File
19 lines
653 B
PHP
Executable File
<?php declare(strict_types=1);
|
|
$boards = $this->getData('boards');
|
|
|
|
echo $this->getData('nav')->render(); ?>
|
|
|
|
<div class="row">
|
|
<?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">
|
|
<?= $this->printHtml($board->getDescription()); ?>
|
|
</div>
|
|
</section>
|
|
</a>
|
|
</div>
|
|
<?php endforeach; ?>
|
|
<div>
|