-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
139 lines (133 loc) · 2.9 KB
/
index.html
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link
rel="icon"
href="./euruko_icon.svg"
/>
<meta
name="viewport"
content="width=device-width, initial-scale=1"
/>
<meta
name="theme-color"
content="black"
/>
<link
rel="preconnect"
href="https://fonts.googleapis.com"
/>
<link
rel="preconnect"
href="https://fonts.gstatic.com"
crossorigin
/>
<link
href="https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600&display=swap"
rel="stylesheet"
/>
<link
rel="apple-touch-icon"
href="./logo192.png"
/>
<link
rel="manifest"
href="./manifest.json"
/>
<title>Euruko 2023</title>
<meta
name="description"
content="Join Euruko 2023 and make it Ruby-bee-doo-bee-doo! The largest and oldest Ruby conference in Europe!"
/>
<meta
property="og:type"
content="website"
/>
<meta
property="og:title"
content="Euruko 2023"
/>
<meta
property="og:description"
content="Join Euruko 2023 and make it Ruby-bee-doo-bee-doo! The largest and oldest Ruby conference in Europe!"
/>
<meta
property="og:url"
content="https://cybergizer-hq.github.io/euruko-2023/"
/>
<!-- og:image -->
<meta
property="og:image"
content="https://cybergizer-hq.github.io/euruko-2023/1200x630.png"
/>
<meta
property="og:image:type"
content="image/png"
/>
<meta
property="og:image:width"
content="1200"
/>
<meta
property="og:image:height"
content="630"
/>
<meta
property="og:image:alt"
content="Euruko 2023"
/>
<meta
name="twitter:card"
content="summary_large_image"
/>
<meta
name="twitter:site"
content="@euruko"
/>
<meta
name="twitter:creator"
content="@euruko"
/>
<meta
property="twitter:title"
content="Euruko 2023"
/>
<meta
property="twitter:description"
content="Join Euruko 2023 and make it Ruby-bee-doo-bee-doo! The largest and oldest Ruby conference in Europe!"
/>
<!-- twitter:image -->
<meta
property="twitter:image"
content="https://cybergizer-hq.github.io/euruko-2023/1200x630.png"
/>
<style>
html {
background-color: black;
}
</style>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root">
<img
src="./loader.gif"
alt="Loading application"
style="
width: 124px;
height: 150px;
display: block;
position: fixed;
top: 50vh;
left: 50vw;
transform: translate(-50%, -50%);
"
/>
</div>
<script
type="module"
src="./src/main.tsx"
></script>
</body>
</html>