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