This repository has been archived on 2025-05-12. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
hack13-blog/app/Views/blog/overview.php
2020-07-27 22:22:06 -04:00

26 lines
No EOL
598 B
PHP

<main role="main">
<div class="container">
<h1 class="mt-5"><?= esc($title); ?></h1>
<?php if (! empty($blog) && is_array($blog)) : ?>
<?php foreach ($blog as $blog_item): ?>
<h3><?= esc($blog_item['title']); ?></h3>
<div class="main">
<?= esc($blog_item['body']); ?>
</div>
<p><a href="/blog/<?= esc($blog_item['slug'], 'url'); ?>">View article</a></p>
<?php endforeach; ?>
<?php else : ?>
<h3>No News</h3>
<p>Unable to find any news for you.</p>
<?php endif ?>
</div>
</main>