aboutsummaryrefslogtreecommitdiff
path: root/app/views/institute/extern/new.php
blob: 34736a9bb0b9d8bfdc015d31b69d9b1b954c3aa2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
/**
 * @var ExternController $controller
 * @var array $config_types
 */
?>

<ul class="content-items" style="padding-top: 10px;">
    <? foreach ($config_types as $type_id => $config_type) : ?>
        <li class="content-item">
            <a class="content-item-link" href="<?= $controller->edit($type_id) ?>">
                <div class="content-item-img-wrapper">
                    <?= Icon::create($config_type['icon'])->asImg(64) ?>
                </div>
                <div class="content-item-text">
                    <p class="content-item-title">
                        <?= htmlReady($config_type['name']) ?>
                    </p>
                    <p class="content-item-description">
                        <?= htmlReady($config_type['description']) ?>
                    </p>
                </div>
            </a>
        </li>
    <? endforeach ?>
</ul>