Initial commit as of 2018-10-16
This commit is contained in:
20
application/views/network/user/user_followers.php
Normal file
20
application/views/network/user/user_followers.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?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>
|
Reference in New Issue
Block a user