formwork/templates/blog.php
2019-03-24 16:57:20 +01:00

24 lines
635 B
PHP
Executable File

<?= $this->layout('site') ?>
<?php if ($page->content()): ?>
<aside>
<div class="container">
<?= $page->content() ?>
</div>
</aside>
<?php endif; ?>
<main>
<div class="container">
<?php foreach ($posts as $post): ?>
<article>
<h1 class="article-title"><a href="<?= $post->uri() ?>"><?= $post->title() ?></a></h1>
<?php if ($post->summary()): ?>
<?= $post->summary() ?>
<?php else: ?>
<?= $post->content() ?>
<?php endif; ?>
</article>
<?php endforeach; ?>
</div>
</main>
<?= $this->insert('_pagination') ?>