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

15 lines
470 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-25 22:54:59 +02:00
</section>