aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/follow_requests_page.php
blob: beb26d58790ffc47fe3233e0e5f780395e9cff8b (plain)
1
2
3
4
5
6
7
8
9
<?php call_template('skeleton', ['pageTitle' => __('followRequests.pageTitle')], function () {
    global $actors;
    if (count($actors) == 0) {
        call_template('placeholder_text');
    }
    foreach ($actors as $actor) {
        call_template('actor/profile', ['actor' => $actor, 'addLink' => true]);
    }
});