summaryrefslogtreecommitdiff
path: root/jakob
diff options
context:
space:
mode:
authorJakob L. Kreuze <zerodaysfordays@sdf.org>2026-02-18 17:56:13 -0500
committerJakob L. Kreuze <zerodaysfordays@sdf.org>2026-02-19 13:51:00 -0500
commit995c709915957f9932ae0f3fa137b8bb9877886a (patch)
tree31507b64d284e5f91e6ac32140a33625008fe67e /jakob
parent3330177ae946da9f347f9ac95ac14025f578a089 (diff)
Stylize bookmark and blogroll pages
Diffstat (limited to 'jakob')
-rw-r--r--jakob/builder/blogroll.scm3
-rw-r--r--jakob/theme.scm4
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")