diff --git a/tekuti/page-helpers.scm b/tekuti/page-helpers.scm index 20e36a9..b2ad60f 100644 --- a/tekuti/page-helpers.scm +++ b/tekuti/page-helpers.scm @@ -268,14 +268,13 @@ (define (show-post post comments?) `((h2 (@ (class "storytitle")) - ,(post-link post)) + ,(post-link post) (br) + (small ,(post-readable-date post) + " (" ,@(list-intersperse + (map tag-link (post-tags post)) + " | ") + ")")) (div (@ (class "post")) - (h3 (@ (class "meta")) - ,(post-readable-date post) - " (" ,@(list-intersperse - (map tag-link (post-tags post)) - " | ") - ")") (div (@ (class "storycontent")) ,(post-sxml-content post)) ,@(if comments?