bludit/themes/pure/php/page.php

26 lines
588 B
PHP
Raw Normal View History

2015-07-20 05:14:12 +02:00
<h1 class="subhead"><?php echo $Language->get('Page') ?></h1>
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 -->
<h2 class="page-title">
<a href="<?php echo $Page->permalink() ?>"><?php echo $Page->title() ?></a>
</h2>
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') ?>
2015-07-07 00:22:03 +02:00
</section>