summaryrefslogtreecommitdiff
path: root/src/templates/index.php
blob: 148a173421f103e7dd63836f17408e6e3c89e0f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!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>
        <?php if ($message) { ?>
            <p><?php echo $message; ?></p>
        <?php } ?>
        <a href="/create">Add</a>
        <ul>
            <?php foreach ($bookmarks as $bookmark) { ?>
                <li><a href="/edit?id=<?php echo $bookmark->id; ?>"><?php echo $bookmark->title; ?></a> | <a href="/delete/confirm?id=<?php echo $bookmark->id; ?>">Delete</a></li>
            <?php } ?>
        </ul>
    </body>
</html>