%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
<div id="content-wrapper"> <div class="container-fluid"> <!-- Breadcrumbs--> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a href="<?php echo site_url('admin/Dashboard'); ?>"><i class="fas fa-fw fa-tachometer-alt"></i> Dashboard</a> </li> <li class="breadcrumb-item active"> Manage Blogs</li> </ol> <!-- DataTables Example --> <div class="card mb-3 fomr-news"> <div class="card-header card-header-new"><h3> <i class="fa fa-bars"></i> Blog Details </h3> <a href="<?=base_url('admin/manageblog/addblog')?>"> <input type="button" name="button" id="button" value="Add New Blog"></a> </div> <div class="clearfix"></div> </div> <div class="card-body"> <div class="table-responsive"> <!---- Success Message ----> <?php if ($this->session->flashdata('success')) { ?> <p style="color:green; font-size:18px;"><?php echo $this->session->flashdata('success'); ?></p> </div> <?php } ?> <table class="table table-bordered" id="dataTable" width="100%" cellspacing="0"> <thead> <tr> <th>SR No.</th> <th>Blog Title</th> <th>Blog Image</th> <th>Blog Short Description</th> <!--<th>Blog Author</th> --> <!-- <th>Blog Type</th> --> <th>Date</th> <th>Status</th> <th>Action</th> </tr> </thead> <tbody> <?php if(count($responseArray)) : $cnt=1; foreach ($responseArray as $row) : $image = $row['blog_image']<>'' ? $row['blog_image'] : 'default.png'; ?> <tr> <td><?php echo htmlentities($cnt);?></td> <td><?php echo htmlentities($row['blog_title'])?></td> <td><img src="<?=base_url('attachments/blog_images/'.$image)?>" width="90px" height="80px"></td> <td><?php echo word_limiter(html_entity_decode($row['blog_short_descr']),20)?></td> <!--<td><?php echo htmlentities($row['author_name'])?></td>--> <td><?php echo htmlentities($row['blog_date'])?></td> <!--<td><?php echo htmlentities($row['display_order'])?></td>--> <td><?php echo $row['status']=='1' ? 'Active' : 'Inactive'; ?></td> <td><?php echo anchor("admin/manageblog/addblog?id=".$row['id'],' ','class="fa fa-edit"')?> <a href="<?=base_url('admin/manageblog/manageblog?delete='.$row['id'])?>" class="fa fa-trash confirm-delete" onclick="return confirm('Are you sure you want to delete ?')"> </a> </td> </tr> <?php $cnt++; endforeach; else : ?> <tr> <td colspan="7">No data available in table</td> </tr> <?php endif; ?> </tbody> </table> </div> </div> </div>