22 lines
476 B
PHP
22 lines
476 B
PHP
<?= snippet("header") ?>
|
|
|
|
<?= snippet("page/title") ?>
|
|
|
|
<?php if (count($posts)) : ?>
|
|
<div class="row">
|
|
<div class="col-12">
|
|
<?php foreach ($posts as $post) : ?>
|
|
<?= snippet("collection/post", ["post" => $post]) ?>
|
|
<?php endforeach ?>
|
|
</div>
|
|
</div>
|
|
<?php else : ?>
|
|
<div class="alert alert-info mb-3">
|
|
No posts have been created yet!
|
|
</div>
|
|
<?php endif ?>
|
|
|
|
<?= snippet("page/pagination", ["pagination" => $posts->pagination()]) ?>
|
|
|
|
<?= snippet("footer") ?>
|