-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathflyer.html.pm
More file actions
49 lines (44 loc) · 2.6 KB
/
flyer.html.pm
File metadata and controls
49 lines (44 loc) · 2.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#lang pollen
◊(require string-interpolation)
◊`(div ([class "bg-white"])
(div ([id "meetup"] [class "min-h-[94vh] text-zinc-700 h-full max-w-screen-xl py-20 px-20"])
(h1 ([class ,"mb-14 text-[16rem] font-free-fat text-center leading-[0.7em]"]) "Free Pizza")
(p ([class "my-4 text-3xl text-center leading-relaxed"])
"and functional programming at")
(p ([class ,"text-4xl text-center font-fira-code text-[@{jordy}] "]) "Tü.λ—Functional Programming Night Tübingen")
(div ([class "my-14 flex justify-between"])
(a ([href "https://www.haskell.org/"])
(img ([src "assets/logos/haskell.svg"] [class "aspect-auto w-28"])))
(a ([href "https://elixir-lang.org"])
(img ([src "assets/logos/elixir.svg"] [class "aspect-auto w-24"])))
(a ([href "https://racket-lang.org"])
(img ([src "assets/logos/racket.svg"] [class "aspect-auto w-24"])))
(a ([href "https://nixos.org"])
(img ([src "assets/logos/nix.png"] [class "aspect-auto w-24"])))
(a ([href "https://clojure.org"])
(img ([src "assets/logos/clojure.svg"] [class "aspect-auto w-24"])))
(a ([href "https://rust-lang.org"])
(img ([src "assets/logos/ferris.svg"] [class "aspect-auto w-24"])))
)
(div ([class "my-14"])
(p ([class "text-4xl font-fira-code text-center my-6 tracking-tight"])
"Next Meetup 19:00, 28.08.2024 @itdesign")
(ul ([class "ml-10 my-14 list-disc *:my-4"])
(li ([class "text-3xl"])
(span ([class "ml-5"]) "Simple development environments with Nix (Talk)"))
(li ([class "text-3xl"])
(span ([class "ml-5"]) "Persistent Data Structures (Talk)"))
(li ([class "text-3xl"])
(span ([class "ml-5"]) "Pizza, talking, coding"))
)
)
(div ([class ""])
(a ([href "https://tu-lambda.github.io"]
[class ,"ml-4 inline-flex gap-4 items-center text-center hover:text-[@{jordy}] focus-visible:text-[@{jordy}] duration-300"])
(svg ([xmlns "http://www.w3.org/2000/svg"] [fill "none"] [viewBox "0 0 24 24"] [stroke-width "3"] [stroke "currentColor"] [class "size-8"])
(path ([stroke-linecap "round"] [stroke-linejoin "round"] [d "M13.5 4.5 21 12m0 0-7.5 7.5M21 12H3"]))
(span ([class "text-4xl text-[@{jordy}] font-fira-code tracking-tighter leading-snug"]) "https://tu-lambda.github.io")))
)
)
)
◊; ,(->badges "Haskell, Nix, Elixir, Erlang, Rust, Clojure, Racket, Category Theory, Lenses")