aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/global_timeline.php
blob: f8fca52792cc6e2b2aa61f8f8c745f5d66cd60c9 (plain)
1
2
3
4
5
6
7
8
9
10
<?php call_template('skeleton', ['pageTitle' => _('Global timeline')], function () {
    global $notes;
    call_template('alertbox', [
        'variety' => 'info',
        'message' => _('This timeline shows all known public indexable notes.')
    ]);
    foreach ($notes as $n) {
        call_template('note', ['note' => $n]);
    }
});