bludit/themes/pure/php/page.php

27 lines
591 B
PHP
Raw Normal View History

2016-01-08 00:43:09 +01:00
<div class="subhead"><?php echo $Language->get('Page') ?></div>
2015-07-07 06:24:51 +02:00
2015-03-08 18:02:59 +01:00
<section class="page">
2015-07-07 06:24:51 +02:00
2015-08-07 04:13:55 +02:00
<!-- Plugins Page Begin -->
<?php Theme::plugins('pageBegin') ?>
2015-07-07 06:24:51 +02:00
<!-- page header -->
<header class="page-header">
<!-- page title -->
2016-01-08 00:43:09 +01:00
<h1 class="page-title">
2015-07-07 06:24:51 +02:00
<a href="<?php echo $Page->permalink() ?>"><?php echo $Page->title() ?></a>
2016-01-08 00:43:09 +01:00
</h1>
2015-07-07 06:24:51 +02:00
2015-03-08 18:02:59 +01:00
</header>
2015-07-07 06:24:51 +02:00
<!-- page content -->
2015-03-08 18:02:59 +01:00
<div class="page-content">
<?php echo $Page->content() ?>
</div>
2015-07-07 06:24:51 +02:00
2015-08-07 04:13:55 +02:00
<!-- Plugins Page Begin -->
<?php Theme::plugins('pageEnd') ?>
</section>