Archived
1
0
This repository has been archived on 2020-12-10. You can view files and clone it, but cannot push or open issues or pull requests.
old/application/views/blog/postList.php

18 lines
504 B
PHP
Raw Normal View History

2018-10-16 16:28:42 +00:00
<?php
2019-01-05 16:14:22 +00:00
defined('BASEPATH') OR exit('No direct script access allowed');
2018-10-16 16:28:42 +00:00
?>
2019-01-05 16:14:22 +00:00
<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);
} ?>
2018-10-16 16:28:42 +00:00
</div>
2019-01-05 16:14:22 +00:00
<ul class="pagination pagination-lg justify-content-center"></ul>
2018-10-16 16:28:42 +00:00
</div>
2019-01-05 16:14:22 +00:00
</div>
</div>
</div>
2018-10-16 16:28:42 +00:00
</section>