-
Notifications
You must be signed in to change notification settings - Fork 129
/
index.html
185 lines (175 loc) · 5.02 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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>
Code in the Dark - you thought you knew front-end
</title>
<meta
name="description"
content="Code in the Dark, you thought you knew front-end. Code in the Dark is a programming competition concept powered by Shopify."
/>
<meta name="author" content="Shopify" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="css/cid.css" />
<link
rel="apple-touch-icon"
sizes="144x144"
href="img/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="img/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="img/favicon-16x16.png"
/>
<link
rel="stylesheet"
href="//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800"
/>
<link rel="shortcut icon" href="/favicon.ico" />
<script>
(function(i, s, o, g, r, a, m) {
i["GoogleAnalyticsObject"] = r;
(i[r] =
i[r] ||
function() {
(i[r].q = i[r].q || []).push(arguments);
}),
(i[r].l = 1 * new Date());
(a = s.createElement(o)), (m = s.getElementsByTagName(o)[0]);
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m);
})(
window,
document,
"script",
"//www.google-analytics.com/analytics.js",
"ga"
);
ga("create", "UA-26369943-9", "codeinthedark.com");
ga("send", "pageview");
</script>
</head>
<body>
<div id="fb-root"></div>
<script>
(function(d, s, id) {
var js,
fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s);
js.id = id;
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
})(document, "script", "facebook-jssdk");
</script>
<div class="share">
<div class="button">
<div
class="fb-like"
data-href="http://codeinthedark.com/"
data-send="false"
data-layout="button_count"
data-width="450"
data-show-faces="false"
></div>
</div>
</div>
<div id="top-background"></div>
<img id="logo" src="img/logo.png" alt="Code In the Dark - Logo" />
<div class="part">
<h2>Organize your own event</h2>
<p>
<a href="https://github.com/codeinthedark/codeinthedark.github.io"
>How to organize Code in the Dark</a
>
</p>
</div>
<div class="part">
<div id="video-container">
<div
class="video-player"
id="videoPlayer"
data-url="//youtube.com/embed/VlV2MyenBEM?autoplay=1&fs=0&iv_load_policy=3&showinfo=0&rel=0&cc_load_policy=0&modestbranding=1"
>
<img src="img/backdrop.jpg" alt="Code in the Dark" />
<div class="video-player-backdrop"></div>
<div class="video-player-play"></div>
</div>
</div>
</div>
<div class="part">
<h2>Community organized events</h2>
<p>
Almada - FCT · February 4th 2020 ·
<a
href="https://www.facebook.com/JortecInformatica/"
target="_blank"
>RSVP</a
>
</p>
<p>
Lisbon · November 5th 2019 ·
<a
href="https://websummit.com/"
target="_blank"
>RSVP</a
>
</p>
<p class="p-small">
Wan't to list your event here? Read up about
<a href="https://github.com/codeinthedark/codeinthedark.github.io"
>How to organize Code in the Dark</a
>
</p>
</div>
<div class="part">
<h2>The rules</h2>
<ul>
<li>15 min</li>
<li>HTML/CSS</li>
<li>No previews</li>
<li>One champion</li>
</ul>
</div>
<div class="part">
<h2>Previous official events</h2>
<p>Stockholm · October 2019</p>
<p>Stockholm · September 2017</p>
<p>Stockholm · September 2016</p>
<p>Stockholm · October 2015</p>
<p>Stockholm · March 2015</p>
<p>New York · October 2014</p>
<p>Paris · March 2014</p>
<p>Stockholm · December 2013</p>
<p>Paris · October 2013</p>
<p>Stockholm · February 2013</p>
</div>
<div class="part">
<p>
Questions?
<a href="mailto:[email protected]">[email protected]</a>
</p>
</div>
<div class="part">
<h2>Proudly presented by</h2>
<div class="sponsors">
<a href="https://shopify.com" target="_blank"
><img
class="shopify-logo"
src="img/shopify_logo_darkbg.svg"
alt="Shopify logo"
/></a>
</div>
</div>
<script src="/js/scripts.js"></script>
</body>
</html>