Codeigniter_Blog_App/application/views/posts/index.php

23 lines
757 B
PHP
Raw Normal View History

2024-07-11 04:23:32 +00:00
<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>