mirror of
https://github.com/laurent22/joplin.git
synced 2025-02-01 19:15:01 +02:00
6 lines
228 B
PHP
Executable File
6 lines
228 B
PHP
Executable File
<table>
|
|
<tr><th>Title</th></tr>
|
|
<?php foreach ($notes as $note): ?>
|
|
<tr><td><a href="/?action=notes¬e_id=<?php echo $note['id']; ?>"><?php echo htmlentities($note['title']); ?></a></td></tr>
|
|
<?php endforeach; ?>
|
|
</table>
|