blob: f93300a65a55b2b37fd89a64d41a34b87c429f50 (
plain)
1
2
3
4
5
6
7
8
9
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]);
}
});
|