aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/side_navigation.php
blob: 9b21833a98d94931a4cc61f60bb2d07658c42705 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<ul class="sideNavigation">
    <?php foreach ($links as $entry): ?>
        <li>
            <a href="<?= $entry['href'] ?>" <?= ($entry['confirmation'] ?? null) ? ('hx-confirm="' . $entry['confirmation'] . '"') : '' ?>>
                <div class="icon material-symbols-outlined"><?= $entry['icon'] ?></div>
                <div><?= $entry['label'] ?></div>
                <?php if (isset($entry['unreadCount']) && $entry['unreadCount'] > 0) {
                    call_template('unread_indicator', ['count' => $entry['unreadCount']]);
                } ?>
            </a>
        </li>
    <?php endforeach; ?>
</ul>