19 lines
451 B
PHTML
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'; ?> |