diff options
Diffstat (limited to 'jakob')
| -rw-r--r-- | jakob/builder/blogroll.scm | 3 | ||||
| -rw-r--r-- | jakob/theme.scm | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/jakob/builder/blogroll.scm b/jakob/builder/blogroll.scm index fea04e2..0523f69 100644 --- a/jakob/builder/blogroll.scm +++ b/jakob/builder/blogroll.scm @@ -84,7 +84,8 @@ each tag is used." (define* (render-entries title prefix entries #:optional tag) "Return an SHTML document listing ENTRIES in PREFIX, with a header of TITLE." #<(main - (h1 ,(if tag + (h2 (@ (class "section-header")) + ,(if tag (format #f "~a :: Tagged \"~a\"" title tag) title)) ,(unless tag (render-tag-cloud prefix entries)) diff --git a/jakob/theme.scm b/jakob/theme.scm index 65aaf51..385160a 100644 --- a/jakob/theme.scm +++ b/jakob/theme.scm @@ -101,7 +101,9 @@ (ul (@ (class "nav-list")) (li (a (@ (href "https://social.jakob.space/users/jakob")) "Pleroma")) (li (a (@ (href "https://lobste.rs/u/jakob")) "Lobste.rs")) - (li (a (@ (href "https://git.sr.ht/~jakob")) "Sr.ht")))) + (li (a (@ (href "https://git.sr.ht/~jakob")) "Sr.ht")) + (li (a (@ (href "/blogroll/")) "Blogroll")) + (li (a (@ (href "/bookmark/")) "Bookmarks")))) (section (@ (class "module status-module") |