" "
(li (a (@ (class "sc-rss") (target "_blank") (href "/feed.xml")) (i (@ (class "fa fa-rss")))))))))
(main ,body))))
+
#:post-template
(lambda (post)
+ (define (get-tags post)
+ (or (assoc-ref (post-metadata post) 'tags) '()))
+
`((article (@ (class "single"))
(header
(h1 ,(post-ref post 'title))
(p ,(date->string* (post-date post))))
,(post-sxml post)
(div (@ (class "tag-cloud"))
- (p (a (@ (href "")) "prueba"))))))
+ (p
+ ,@(map (lambda (tag)
+ `((a (@ (href "")) ,tag) " "))
+ (get-tags post)))))))
+
#:collection-template
(lambda (site title posts prefix)
(define (post-uri post)