21 lines
818 B
PHP
21 lines
818 B
PHP
|
<?php
|
||
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
||
|
?>
|
||
|
<?php $this->load->view('network/user/profile_page_header', ['active' => 'blog-comments']); ?>
|
||
|
<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><?= lang('profile_all_blog_comments') ?></h1>
|
||
|
<div class="post-container">
|
||
|
<ul class="comment-list">
|
||
|
|
||
|
</ul>
|
||
|
<i class="fa fa-cog fa-spin fa-5x loading-spinner"></i>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</section>
|