23 lines
757 B
PHP
23 lines
757 B
PHP
|
|
||
|
<h2><?= $title ?></h2>
|
||
|
<?php foreach($posts as $post) : ?>
|
||
|
|
||
|
<h3><?php echo $post['title']; ?></h3>
|
||
|
<div class = "row">
|
||
|
<div class = "col-md-3">
|
||
|
<img class ="post-thumb" src="<?= site_url(); ?>assets/images/posts/<?= $post['post_image'];?>">
|
||
|
</div>
|
||
|
<div class = "col-md-9">
|
||
|
<small class = "post-date">Posted on: <?php echo $post['created_at']; ?> in <strong> <?= $post['name']; ?></strong></small><br>
|
||
|
<?php echo word_limiter($post['body'], 50); ?>
|
||
|
<br><br>
|
||
|
<p>
|
||
|
<a class = "btn btn-default" href="<?php echo site_url('/posts/'.$post['slug']);?>">Read More</a>
|
||
|
</p>
|
||
|
</div>
|
||
|
</div>
|
||
|
<?php endforeach; ?>
|
||
|
<div class = "pagination-links">
|
||
|
<?php echo $this->pagination->create_links(); ?>
|
||
|
</div>
|