From 57eb8f6712361a3bf75983ce153fac4846dc0273 Mon Sep 17 00:00:00 2001 From: Vikas Kushwaha Date: Tue, 11 Feb 2025 16:31:08 +0530 Subject: Initial commit --- .../articles/partials/comments-wrapper.tmpl | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 cmd/web/templates/articles/partials/comments-wrapper.tmpl (limited to 'cmd/web/templates/articles/partials/comments-wrapper.tmpl') diff --git a/cmd/web/templates/articles/partials/comments-wrapper.tmpl b/cmd/web/templates/articles/partials/comments-wrapper.tmpl new file mode 100644 index 0000000..266b4e5 --- /dev/null +++ b/cmd/web/templates/articles/partials/comments-wrapper.tmpl @@ -0,0 +1,26 @@ +
+ {{ range $comment := .Article.Comments }} + {{ template "articles/partials/comments-card" Dict "Comment" $comment }} + {{ end }} +
+ +{{ if .IsAuthenticated }} +
+ + {{ template "articles/partials/comments-form" . }} +{{ else }} +
+ + Sign in + + or + + sign up + + to add comments on this article. +
+{{ end }} \ No newline at end of file -- cgit v1.2.3