From a535a9e7e017629178b45acc2e96e1d674a0d6fc Mon Sep 17 00:00:00 2001 From: Nicolas BERNSTEIN Date: Fri, 13 Apr 2012 19:17:17 +0200 Subject: Added : ATOM feed for blog ; abilty to comment posts. --- tpl/blog/view.php | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 tpl/blog/view.php (limited to 'tpl/blog/view.php') diff --git a/tpl/blog/view.php b/tpl/blog/view.php new file mode 100644 index 0000000..0f0c89c --- /dev/null +++ b/tpl/blog/view.php @@ -0,0 +1,50 @@ +'; +echo 'Written by ' . $post['owner']; +if ($can_edit && $post['owner_id'] == $user['id']) + echo ' | edit'; +if ($can_delete && $post['owner_id'] == $user['id']) + echo ' | delete'; +if ($can_comment) + echo ' | post comment'; +echo ''; +echo '
published ' . $post['date'] . '
'; +if ($post['tags'] != '') { + echo '
tags: ' . $post['tags'] . '
'; +} +echo $post['text_html']; + +echo '

Comments

'; + +if (count($comments) == 0) { + echo 'No comments at the moment.'; +} else { + foreach ($comments as $comment) { + echo '
'; + $a = array(); + if ($can_delcom) $a[] = 'delete'; + if ($can_comment && $comment['author_id'] == $user['id']) + $a[] = 'edit'; + if (count($a) > 0) + echo '
' . implode(" | ", $a) . '
'; + + echo '

' . $comment['date'] . ' by ' . $comment['author'] . '

'; + echo '
' . $comment['text_html'] . '
'; + echo '
'; + } +} + +echo '

Post a comment

'; +if ($can_comment) { + echo '

 
'; +} else { + echo 'Please log in or register to post a comment.'; +} + + +require("tpl/general/bottom.php"); -- cgit v1.2.3