diff options
author | François Kooman <fkooman@tuxed.net> | 2019-08-08 15:15:49 +0200 |
---|---|---|
committer | François Kooman <fkooman@tuxed.net> | 2019-08-08 15:15:49 +0200 |
commit | 7bd25b7cc4a539b21d6aeef13a53e4aa9d401020 (patch) | |
tree | f57b49415b4ec29c23295bdce79db66a624a281a /views | |
parent | 14245d93c47381e9f425cc42094ee20257fe90f9 (diff) | |
download | www.tuxed.net-7bd25b7cc4a539b21d6aeef13a53e4aa9d401020.zip www.tuxed.net-7bd25b7cc4a539b21d6aeef13a53e4aa9d401020.tar.gz www.tuxed.net-7bd25b7cc4a539b21d6aeef13a53e4aa9d401020.tar.xz |
link to post history in git instead of manually writing post updates
Diffstat (limited to 'views')
-rw-r--r-- | views/post.php | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/views/post.php b/views/post.php index 0c554cd..9471d37 100644 --- a/views/post.php +++ b/views/post.php @@ -1,14 +1,15 @@ <?php $this->layout('base'); ?> <?php $this->start('content'); ?> <h2><?php echo $this->e($pageTitle); ?></h2> - <?php echo $post['htmlContent']; ?> - - <p class="center"> + <p> <small> Published on <?php echo $this->e($post['published']); ?> -<?php if ($post['modified']): ?> - (Updated on <?php echo $this->e($post['modified']); ?>) -<?php endif; ?> </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 endif; ?> + <p class="center"><small><a href="<?php echo $this->e($post['postHistory']); ?>">History</a></small></p> <?php $this->stop(); ?> |