bludit/bl-themes/editorial/php/page.php

17 lines
497 B
PHP
Raw Normal View History

2017-05-24 23:15:23 +02:00
<section>
<header class="main">
<!-- Title of the page -->
2017-05-24 23:15:23 +02:00
<h1><?php echo $page->title() ?></h1>
</header>
<!-- 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>
<!-- Content of the page -->
2017-05-24 23:15:23 +02:00
<?php echo $page->content() ?>
<!-- Plugins with the hook pageEnd -->
<?php Theme::plugins('pageEnd') ?>
2017-06-23 00:41:00 +02:00
</section>
<?php var_dump($page); ?>