diff options
Diffstat (limited to 'templates/local_timeline.php')
| -rw-r--r-- | templates/local_timeline.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/templates/local_timeline.php b/templates/local_timeline.php new file mode 100644 index 0000000..a4624b5 --- /dev/null +++ b/templates/local_timeline.php @@ -0,0 +1,10 @@ +<?php call_template('skeleton', ['pageTitle' => 'Local timeline'], function () { + global $notes; + call_template('alertbox', [ + 'variety' => 'info', + 'message' => 'This timeline shows all public indexable notes posted by users on this server' + ]); + foreach ($notes as $n) { + call_template('note', ['note' => $n]); + } +});
\ No newline at end of file |
