From c5f39ea2cd7cf02246705ea8872d3b350526165c Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Fri, 24 May 2024 09:05:42 -0400 Subject: initial --- src/web/_views/comments.php | 51 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 src/web/_views/comments.php (limited to 'src/web/_views/comments.php') diff --git a/src/web/_views/comments.php b/src/web/_views/comments.php new file mode 100644 index 0000000..d72afd6 --- /dev/null +++ b/src/web/_views/comments.php @@ -0,0 +1,51 @@ + + + '; + echo '

' . esc($comment['author']) . '

'; + echo '' . $date . ''; + echo '

' . esc($comment['content']) . '

'; + echo ''; + } + if (!count($comments)) { + echo ''. lang('no_comments') .''; + } + ?> +
+

+
+ + + + + +
+
+ + -- cgit v1.2.3-freya