mirror of
https://github.com/getformwork/formwork.git
synced 2025-02-23 01:02:46 +01:00
11 lines
348 B
PHP
11 lines
348 B
PHP
<?= $this->layout('site') ?>
|
|
<main>
|
|
<div class="container">
|
|
<article>
|
|
<h1 class="article-title"><a href="<?= $page->uri() ?>"><?= $page->title() ?></a></h1>
|
|
<?= $this->insert('_tags', array('post' => $page, 'blog' => $page->parent())) ?>
|
|
<?= $page->content() ?>
|
|
</article>
|
|
</div>
|
|
</main>
|