-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.html.p
74 lines (70 loc) · 2.53 KB
/
template.html.p
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
71
72
73
74
◊(define title "Mittwoch 19")
◊(define description "Lust auf Hacking, Lernen, Spaß? Westspitze, Mittwochabend, komm vorbei!")
◊(define image-path "")
◊(define url "https://haglobah.github.io/mittwoch-19")
◊(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="assets/preflight.css">
<link rel="stylesheet" href="assets/uno.css">
<script src="assets/main.js"></script>
</head>
<body class="antialiased scroll-smooth font-sans">
◊(->html `(div ([class ""])
,doc))
<footer class="p-6 sm:p-8 md:p-12">
<div class="flex flex-col justify-center items-center gap-2 text-sm text-zinc-400">
<div class="flex flex-wrap gap-x-2 justify-center">
<p class="whitespace-nowrap">
Von Tübinger:innen für Tübinger:innen
</p>
</div>
<div class="flex flex-wrap gap-x-2 justify-center">
<p class="">
mit
</p>
<p class="">
❤️
</p>
<p class="whitespace-nowrap">
gemacht
</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>