diff options
Diffstat (limited to 'haunt')
| -rw-r--r-- | haunt/jakob/builder/outbox.scm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/haunt/jakob/builder/outbox.scm b/haunt/jakob/builder/outbox.scm index ba63788..fcccc57 100644 --- a/haunt/jakob/builder/outbox.scm +++ b/haunt/jakob/builder/outbox.scm @@ -28,7 +28,10 @@ ;;; Commentary: ;;; -;;; [TODO] +;;; My implementation of an "outbox" for sending comments via Webmention [1] to +;;; sites that support it. +;;; +;;; [1]: https://webmention.net/ ;;; ;;; Code: @@ -55,7 +58,7 @@ ;;; (define (datetime uri date) - `(p (a (@ (class "u-url") (href uri)) + `(p (a (@ (class "u-url") (href ,uri)) (time (@ (class "dt-published") (datetime ,(date->string date "~4"))) ,(date->string date "~B ~e, ~Y"))))) |