blob: 58f7bcfe527edc0925b4431d806d6e8245099249 (
plain) (
blame)
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
◊(require string-interpolation)
◊(define title "Functional Coders Tübingen")
◊(define description "What if... we just take the best parts of prgogramming and see where this leads us?")
◊(define image-path "")
◊(define url "https://functional-coders.github.io/")
◊(define icon-path "")
<!DOCTYPE html>
<html lang="de-DE" class="sm:scroll-smooth">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="og:locale" value="en_US">
<meta property="og:type" value="website">
<meta property="og:site_name" content="◊|title|" >
<meta property="og:url" value="◊|url|" >
<meta property="og:image" value="◊|image-path|" >
<meta property="og:image:secure_url" content="◊|url|" />
<meta property="og:image:type" content="image/jpg">
<meta property="og:image:width" content="800">
<meta property="og:image:height" content="1200">
<meta property="og:image:alt" content="◊|title|" >
<meta property="og:title" value="◊|title|" >
<meta property="og:description" value="◊|description|" >
<meta property="twitter:title" value="◊|title|" >
<meta property="twitter:description" value="◊|description|" >
<meta property="twitter:url" value="◊|url|" >
<meta property="twitter:image" value="◊|image-path|" >
<title>◊|title|</title>
<meta name="description" content="◊|description|" >
<link rel="icon" type="image/x-icon" href="◊|icon-path|">
<link rel="stylesheet" href="fonts.css">
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="antialiased font-fira-sans selection:bg-[◊|jordy-light|] selection:text-[◊|raisin-black|]">
◊(->html `(div ([class ""])
,doc))
<footer class="p-6 sm:p-8 md:p-12">
<div class="flex flex-wrap justify-center items-center gap-4 sm:gap-6 md:gap-8 text-sm text-zinc-400">
<div class="flex flex-wrap gap-x-2 justify-center">
<p class="">
Made with
</p>
<p class="">
❤️
</p>
<p class="whitespace-nowrap">
by Functional Coders Tübingen
</p>
</div>
◊; <div class="flex gap-4 sm:gap-6 md:gap-8">
◊; <a href="/terms">
◊; <p class="whitespace-nowrap">Terms</p>
◊; </a>
◊; <a href="/imprint">
◊; <p class="whitespace-nowrap">Imprint</p>
◊; </a>
◊; <a href="/privacy-policy">
◊; <p class="whitespace-nowrap">Privacy Policy</p>
◊; </a>
◊; </div>
</div>
</footer>
</body>
</html>
|