21 lines
468 B
PHP
21 lines
468 B
PHP
|
<article class="post">
|
||
|
|
||
|
<!-- Plugins Page Begin -->
|
||
|
<?php Theme::plugins('pageBegin') ?>
|
||
|
|
||
|
<!-- Post's header -->
|
||
|
<header>
|
||
|
<div class="title">
|
||
|
<h2><a href="<?php echo $Page->permalink() ?>"><?php echo $Page->title() ?></a></h2>
|
||
|
<p><?php echo $Page->description() ?></p>
|
||
|
</div>
|
||
|
</header>
|
||
|
|
||
|
<!-- Post's content, the first part if has pagebrake -->
|
||
|
<?php echo $Page->content() ?>
|
||
|
|
||
|
<!-- Plugins Page End -->
|
||
|
<?php Theme::plugins('pageEnd') ?>
|
||
|
|
||
|
</article>
|