blob: 9d9027c77405d4cc12525fc15a4a815b772ae81c (
plain)
1
2
3
4
5
6
7
8
9
10
|
<?php call_template('skeleton', ['pageTitle' => __('timeline.local')], function () {
global $notes;
call_template('alertbox', [
'variety' => 'info',
'message' => __('timeline.local.description')
]);
foreach ($notes as $n) {
call_template('note', ['note' => $n]);
}
});
|