formwork/templates/post.php
2019-03-17 21:39:39 +01:00

12 lines
383 B
PHP
Executable File

<?= $this->insert('_header') ?>
<?= $this->insert('_cover-image') ?>
<main>
<div class="container">
<article>
<h1 class="article-title"><a href="<?= $page->uri() ?>"><?= $page->title() ?></a></h1>
<?= $page->get('summary') . $page->content() ?>
</article>
</div>
</main>
<?= $this->insert('_footer') ?>