aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/global_timeline.php
blob: dbecd7b0969f8c07c76779e9f246f2d5ce1d154b (plain)
1
2
3
4
5
6
<?php call_template('skeleton', ['pageTitle' => 'Global timeline'], function () {
    global $notes;
    foreach ($notes as $n) {
        call_template('note', ['note' => $n]);
    }
});