18 lines
		
	
	
		
			504 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			504 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
|     defined('BASEPATH') OR exit('No direct script access allowed');
 | |
| ?>
 | |
| <div class="col-lg-8 order-lg-first">
 | |
|     <div class="blog">
 | |
|         <ul class="pagination pagination-lg justify-content-center"></ul>
 | |
|         <div id="content">
 | |
|             <?php foreach ($pageContent as $item) {
 | |
|                 $this->load->view('blog/postListEntry', $item);
 | |
|             } ?>
 | |
|         </div>
 | |
|         <ul class="pagination pagination-lg justify-content-center"></ul>
 | |
|     </div>
 | |
| </div>
 | |
| </div>
 | |
| </div>
 | |
| </section>
 |