| Server IP : 144.76.79.100 / Your IP : 216.73.216.103 [ Web Server : Apache System : Linux ch05.wehostwebserver.com 5.14.0-611.5.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Nov 11 08:09:09 EST 2025 x86_64 User : razzlestore ( 1092) PHP Version : 8.2.29 Disable Function : NONE Domains : 343 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/public_html/application/views/front/ |
Upload File : |
<section class="blog single-blog section">
<div class="container">
<div class="row">
<div class="col-md-10 offset-md-1 col-lg-9 offset-lg-0">
<article class="single-post">
<h3><?php echo $blog->blog_title;?></h3>
<ul class="list-inline">
<li class="list-inline-item">by <a href="#"><?php echo $blog->blog_author;?></a></li>
<li class="list-inline-item"><?php echo date("M, d Y", strtotime($blog->blog_date));?></li>
</ul>
<img src="<?php echo base_url('uploads/blog/'.$blog->blog_banner_image);?>" alt="article-01">
<div><?php echo $blog->blog_content;?></div>
<ul class="social-circle-icons list-inline">
<li class="list-inline-item text-center"><a class="fa fa-facebook" href="https://facebook.com/sharer/sharer.php?u=<?php echo current_url();?>" target="_blank"></a></li>
<li class="list-inline-item text-center"><a class="fa fa-twitter" href="https://twitter.com/intent/tweet/?url=<?php echo current_url();?>" target="_blank"></a></li>
<li class="list-inline-item text-center"><a class="fa fa-whatsapp" href="whatsapp://send?text=<?php echo current_url();?>" data-action="share/whatsapp/share"></a></li>
</ul>
</article>
</div>
<div class="col-md-10 offset-md-1 col-lg-3 offset-lg-0">
<div class="sidebar blog">
<!-- Search Widget -->
<div class="widget search p-0 blog">
<div class="input-group">
<input type="text" class="form-control" id="expire" placeholder="Search...">
<span class="input-group-addon"><i class="fa fa-search"></i></span>
</div>
</div>
<!-- Category Widget -->
<div class="widget category">
<!-- Widget Header -->
<h5 class="widget-header">Categories</h5>
<ul class="category-list">
<?php if(!empty($blog_categories)):foreach($blog_categories as $blog_category):?>
<li><a href="<?php echo base_url('blog/category/'.$blog_category['blog_category']);?>"><?php echo $blog_category['blog_category'];?> <span class="float-right"><?php echo (!empty($blog_category['blog_category_count']))?'('.$blog_category['blog_category_count'].')':''; ?></span></a></li>
<?php endforeach;endif;?>
</ul>
</div>
<!-- Archive Widget -->
<div class="widget archive">
<!-- Widget Header -->
<h5 class="widget-header">Archives</h5>
<ul class="archive-list">
<?php if(!empty($blog_archives)):foreach($blog_archives as $blog_archive):?>
<li><a href="#"><?php echo date("F Y", strtotime($blog_archive['blog_date']));?></a></li>
<?php endforeach;endif;?>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>