aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/local_timeline.php
blob: a4624b5f6b8f5a248c7530f283d40ea01531608e (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]);
    }
});