diff options
Diffstat (limited to 'jakob/builder/blog.scm')
| -rw-r--r-- | jakob/builder/blog.scm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/jakob/builder/blog.scm b/jakob/builder/blog.scm index f38266b..dc903dd 100644 --- a/jakob/builder/blog.scm +++ b/jakob/builder/blog.scm @@ -105,10 +105,8 @@ (define (comments-section post) `(section (@ (class "comments-section") (aria-labelledby "comments-heading")) - (h3 (@ (id "comments-heading") - (class "module-title")) - ;; TODO: Need dynamiccount of comments - "Comments (2)") + ,@(render-comment-view (fetch-comments (post-identifier post)) + (fetch-webmentions (post-identifier post))) (div (@ (class "comment-form-module")) (h4 (@ (class "module-title")) "Leave a Comment") |