2017-05-24 23:15:23 +02:00
|
|
|
<section>
|
|
|
|
<header class="main">
|
2017-05-30 19:18:18 +02:00
|
|
|
<!-- Title of the page -->
|
2017-05-24 23:15:23 +02:00
|
|
|
<h1><?php echo $page->title() ?></h1>
|
|
|
|
</header>
|
|
|
|
|
2017-05-30 19:18:18 +02:00
|
|
|
<!-- Cover image of the page -->
|
2017-05-24 23:15:23 +02:00
|
|
|
<span class="image main"><img src="<?php echo $page->coverImage() ?>" alt="" /></span>
|
|
|
|
|
2017-05-30 19:18:18 +02:00
|
|
|
<!-- Content of the page -->
|
2017-05-24 23:15:23 +02:00
|
|
|
<?php echo $page->content() ?>
|
2017-05-30 19:18:18 +02:00
|
|
|
|
|
|
|
<!-- Plugins with the hook pageEnd -->
|
|
|
|
<?php Theme::plugins('pageEnd') ?>
|
2017-06-25 22:54:59 +02:00
|
|
|
</section>
|