summaryrefslogtreecommitdiff
path: root/src/templates/index.php
blob: 27038517ea8a4c0f08f8c3921678f226eef3a87d (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><a href="/edit?id=<?php echo $bookmark->id; ?>"><?php echo $bookmark->title; ?></a></li>
        <?php } ?> 
    </ul>
    </body>
</html>