summaryrefslogtreecommitdiffstatshomepage
path: root/tekuti/page-helpers.scm
diff options
context:
space:
mode:
Diffstat (limited to 'tekuti/page-helpers.scm')
-rw-r--r--tekuti/page-helpers.scm13
1 files changed, 12 insertions, 1 deletions
diff --git a/tekuti/page-helpers.scm b/tekuti/page-helpers.scm
index ab0a5e7..27f989a 100644
--- a/tekuti/page-helpers.scm
+++ b/tekuti/page-helpers.scm
@@ -43,7 +43,7 @@
post-url
post-editing-form
sidebar-ul top-tags tag-cloud
- main-sidebar post-sidebar related-tag-cloud
+ main-sidebar post-sidebar tag-sidebar related-tag-cloud
post-link admin-post-url admin-post-link
show-post with-authentication
find-posts-matching
@@ -348,6 +348,17 @@
,(post-link (car post-and-tags))))
(take-max (compute-related-posts post index) 10)))))))
+(define (tag-sidebar tag index)
+ (sidebar-ul
+ `((li (h2 (a (@ (href ,(relurl '("feed" "atom")
+ #:query `(("with" . ,tag)))))
+ "subscribe "
+ (img (@ (src ,(relurl '("wp-content" "feed-icon-14x14.png")))
+ (alt "[feed]"))))))
+ (li (h2 "related tags " ,(rellink '("tags") ">>"))
+ (ul (li (@ (style "line-height: 150%"))
+ ,@(tag-cloud (compute-related-tags tag index))))))))
+
(define (related-tag-cloud tag index)
`(div (@ (id "tag-cloud"))
(h2 "related tags")