diff options
Diffstat (limited to 'haunt/jakob/builder/blog.scm')
| -rw-r--r-- | haunt/jakob/builder/blog.scm | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/haunt/jakob/builder/blog.scm b/haunt/jakob/builder/blog.scm index ba8a5ee..cef3b69 100644 --- a/haunt/jakob/builder/blog.scm +++ b/haunt/jakob/builder/blog.scm @@ -77,9 +77,12 @@ (ul (@ (id "webmention-container")) ;; ,@(render-comment-view (fetch-webmentions (post-identifier post)))) ,@(render-comment-view (fetch-comments (post-identifier post)))) - (div (@ (id "dynamic-comment-form-insert") (hidden #t)) - ,(render-comment-form (post-identifier post) #:header-level 'h3)) - (p "Click " ,(hyperlink (build-comment-url post) "here") " to write a comment on this post.") + + (div (@ (id "comment-form-primary") (hidden #t)) + ,(render-dynamic-comment-form (post-identifier post))) + (p (@ (id "comment-form-alt")) + "Click " ,(hyperlink (build-comment-url post) "here") " to write a comment on this post.") + (form (@ (id "webmention-form") (action "https://webmention.io/jakob.space/webmention") |