formwork/templates/post.php
Giuseppe Criscione d3e591f7c9 Initial commit
2018-06-16 16:41:58 +02:00

11 lines
346 B
PHP
Executable File

<?= $this->insert('_header') ?>
<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') ?>