aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/side_navigation.php
blob: d9a2dfdb12136271f08571529f671ae1110da942 (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'] ?>">
                <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>