Archived
1
0
This repository has been archived on 2020-12-10. You can view files and clone it, but cannot push or open issues or pull requests.
old/application/views/network/user/user_followers.php
2018-10-16 18:28:42 +02:00

21 lines
893 B
PHP

<?php
defined('BASEPATH') OR exit('No direct script access allowed');
$this->load->view('network/user/profile_page_header', ['active' => $active]);
?>
<section id="profile-content" data-type="foreground" data-speed="10">
<div class="container">
<div class="row">
<?php $this->load->view('network/user/user_profile_card', ['data' => $data]) ?>
<div class="col-xs-12 col-sm-12 col-md-8 col-lg-8" id="profile-content-container">
<h1><?= $active == 'followers' ? lang('profile_all_followers') : lang('profile_all_followed') ?></h1>
<ul class="followers-list">
<?php foreach ($followers as $follower) {
$this->load->view('network/user/user_followers_item', ['data' => $follower]);
} ?>
</ul>
</div>
</div>
</div>s
</section>