mirror of
https://github.com/getformwork/formwork.git
synced 2025-02-25 02:02:57 +01:00
24 lines
635 B
PHP
Executable File
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') ?>
|