diff options
author | Beat Hagenlocher | 2024-06-29 00:57:45 +0200 |
---|---|---|
committer | Beat Hagenlocher | 2024-06-29 00:57:45 +0200 |
commit | a1ebaf176d6373b179bc563a519a0fa37b1bc0c3 (patch) | |
tree | d504babf5799c1fcf14b57fb11e2b802b2698292 /pollen.rkt | |
parent | e8c03ff94b96c9a6f76da1c9356065b6da5661a9 (diff) |
Add more content & first tags
Diffstat (limited to 'pollen.rkt')
-rw-r--r-- | pollen.rkt | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -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)) |