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