aboutsummaryrefslogtreecommitdiffhomepage
path: root/pollen.rkt
diff options
context:
space:
mode:
authorBeat Hagenlocher2024-06-29 00:57:45 +0200
committerBeat Hagenlocher2024-06-29 00:57:45 +0200
commita1ebaf176d6373b179bc563a519a0fa37b1bc0c3 (patch)
treed504babf5799c1fcf14b57fb11e2b802b2698292 /pollen.rkt
parente8c03ff94b96c9a6f76da1c9356065b6da5661a9 (diff)
Add more content & first tags
Diffstat (limited to 'pollen.rkt')
-rw-r--r--pollen.rkt10
1 files changed, 10 insertions, 0 deletions
diff --git a/pollen.rkt b/pollen.rkt
index a18e169..5fb2194 100644
--- a/pollen.rkt
+++ b/pollen.rkt
@@ -22,3 +22,13 @@
`(ul ([class "flex flex-wrap justify-center"] [aria-label "Tools/Techniques used"])
,(for/splice ([topic top-list]) (badge topic)))))
+(define (link text url)
+ `(a ([class ,"text-[@{jordy}] hover:underline decoration-2 underline-offset-2 decoration-[@{jordy}] hover:text-[@{jordy}]"] [rel "noreferrer noopener"] [target "_blank"] [href ,url])
+ ,text))
+
+(define (id-ify text)
+ (string-replace (string-downcase text) " " "-"))
+
+(define (heading text)
+ `(h1 ([id ,(id-ify text)] [class ,"text-3xl font-fira-code text-[@{jordy}] tracking-tighter leading-snug"])
+ ,text))