blob: 50a70a0602507064c54c35d22d074e75f549245d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php $this->layout('base'); ?>
<?php $this->start('content'); ?>
<h2><?php echo $this->e($pageTitle); ?></h2>
<p>
<small>
Published on <?php echo $this->e($post['published']); ?>
</small>
</p>
<?php echo $post['htmlContent']; ?>
<?php if ($post['modified']) { ?>
<p class="center"><small>Last Modified on <?php echo $this->e($post['modified']); ?></small></p>
<?php } ?>
<p class="center"><small><a href="<?php echo $this->e($post['postHistory']); ?>">History</a></small></p>
<?php $this->stop('content'); ?>
|