EVOLUTION-NINJA
Edit File: news.php
<!----------------------- slider-----------------------------------------------------------> <div class="news_img"> <img src="<?php echo base_url('assets/img/banner-news.png');?>" alt="First slide" class="img-responsive"> </div> <!----------------------- Banner End------------------------------------------------------------> <div class="news-page" id="news-top-pad"> <div class="container"> <h3>News & Events</h3> <?php if($news !="") { $cnt=1; foreach($news as $new) { ?> <div class=" n-tabs new_events"> <h4><?php echo $cnt++.".";echo $new->news_title;?></h4> <p><?php echo $new->news_description;?></p> <?php if( $new->url !="") { ?> <i class="fa fa-newspaper-o" aria-hidden="true"></i> <a target=" target_blank" href="<?php echo $new->url;?>">External Link</a>             <?php }?> <i class="fa fa-newspaper-o" aria-hidden="true"></i> <a target=" target_blank" href="<?php echo base_url($new->attachment);?>">View Attachment</a> <hr> </div> <?php } }?> </div> <!-- container --> </div> <!-- ---------------- News Paper END --> <div class="height-50"></div>