1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-02-01 19:15:01 +02:00
2017-01-05 19:01:50 +01:00

6 lines
228 B
PHP
Executable File

<table>
<tr><th>Title</th></tr>
<?php foreach ($notes as $note): ?>
<tr><td><a href="/?action=notes&note_id=<?php echo $note['id']; ?>"><?php echo htmlentities($note['title']); ?></a></td></tr>
<?php endforeach; ?>
</table>