summaryrefslogtreecommitdiff
path: root/src/templates/index.php
blob: 9656551e03fcf3447d5050a83cadd3a1de601380 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!doctype html>
<html lang="en">
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <title>Bookmarks</title>
    </head>
    <body>
    <ul>
        <?php foreach ($bookmarks as $bookmark) { ?>
            <li><?php echo "[$bookmark->id] $bookmark->url"; ?></li>
        <?php } ?> 
    </ul>
    </body>
</html>