/home/hdwebsolution/www/sareenn/application/views/blog/view.php
<?php $this->load->view('_header'); ?>
<?php $this->load->view('_top_header'); ?>
<?php $this->load->view('_navbar'); ?>

     
    <title><?php echo $post->title; ?></title>
</head>
<body>
     <div class="container">
   <center> <h1><?php echo $post->title; ?></h1>
     <img src="<?php echo base_url('uploads/blogimage/' . $post->image_filename); ?>" alt="Blog Image">
     </center>
    <p><strong>Author:</strong> <?php echo $post->author; ?></p>
    <p><strong>Date Published:</strong> <?php echo $post->date_published; ?></p>
    
    <div>
        <?php echo $post->content; ?>
    </div>
</div>    
    
<?php $this->load->view('_footer'); ?>