EIANotesApp/Views/Notes/showNotes.phtml
2025-06-16 10:06:31 +02:00

19 lines
451 B
PHTML

<?php include dirname(__DIR__).'/header.phtml'; ?>
<h2>Notes</h2>
<div class="container">
<?php
$parsedown = new Parsedown();
$parsedown->setSafeMode(true);
foreach($notes as $n) {
echo '<div class="item-4-12">';
echo '<h3>' . $n["title"] . '</h3>'
. '<p>' . $parsedown->text($n['content'] ?? '') . '</p>';
echo '</div>';
}
?>
</div>
<?php include dirname(__DIR__).'/footer.phtml'; ?>