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