Make post published date a <p> instead of a <span>

This commit is contained in:
Jeremy Dormitzer 2020-08-14 17:01:47 -04:00
parent daa8d53bd5
commit ea225293e6

View File

@ -75,7 +75,7 @@
(define (published-date date-str)
(let ((publish-date (iso8601->date date-str)))
(txexpr
'span '((class "published-date")) `("Posted on " ,(~t publish-date "MMMM d, y")))))
'p '((class "published-date")) `("Posted on " ,(~t publish-date "MMMM d, y")))))
(define (make-excerpt doc)
(let ((elts (get-elements doc)))