-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathscholarship.html
717 lines (610 loc) · 19.8 KB
/
scholarship.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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1.0, width=device-width">
<title>Web Rebels Scholarship Programme Web Rebels Conference ☠ Oslo 2015</title>
<meta property="og:title" content="Web Rebels Scholarship Programme Web Rebels Conference ☠ Oslo 2015" />
<meta property="og:type" content="website" />
<!--meta property="og:url" content="" /-->
<meta property="og:image" content="https://www.webrebels.org/img/classof2014.jpg" />
<meta property="og:description" content="Web Rebels is a non-profit, community driven conference for everyone who loves developing applications and services using web technology." />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@web_rebels" />
<meta name="twitter:title" content="Web Rebels Scholarship Programme Web Rebels Conference ☠ Oslo 2015" />
<meta name="twitter:description" content="Web Rebels is a non-profit, community driven conference for everyone who loves developing applications and services using web technology.">
<meta name="twitter:image" content="https://www.webrebels.org/img/classof2014.jpg" />
<!--meta name="twitter:url" content="" /-->
<meta name="description" content="Web Rebels is a non-profit, community driven conference for everyone who loves developing applications and services using web technology.">
<script>
var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-26864429-1']); _gaq.push(['_setDomainName', 'webrebels.org']); _gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script> <style>/* src/css/structure.css */
@font-face {
font-family: "RatherLoud";
src: url("fonts/RatherLoud-webfont.eot");
src: url("fonts/RatherLoud-webfont.eot@") format("embedded-opentype"),
url("fonts/RatherLoud-webfont.woff2") format("woff2"),
url("fonts/RatherLoud-webfont.woff") format("woff"),
url("fonts/RatherLoud-webfont.ttf") format("truetype");
font-weight: normal;
font-style: normal;
}
/* Base
------------------------------------------------------*/
html {
font-family: Georgia, serif;
font-size: 18px;
line-height: 1.5;
box-sizing: border-box;
}
body {
background-color: #fff;
color: #3C3C36;
margin: 0;
padding: 0;
}
a {
text-decoration: none;
}
a:link,
a:visited {
color: #69A0A8;
}
a:hover,
a:focus,
a:active {
color: #308A8E;
}
img {
max-width: 100%;
height: auto;
}
article, aside, figure, footer, header, nav, section {
display: block;
}
ul, ol, p, img {
margin: 0 0 1.5em 0;
}
ul, ol {
padding-left: 1em;
}
ul {
list-style-type: disc;
}
h1, h2, h3 {
margin: 0;
line-height: 1.1;
}
/* hiding content ref http://snook.ca/s/992 */
.visuallyhidden {
position: absolute;
overflow: hidden;
clip: rect(0 0 0 0);
height: 1px; width: 1px;
margin: -1px; padding: 0; border: 0;
}
/* self-clear floats from handcraftedcss.com */
.group:after,
.floor:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
/* clearfix */
.cf {
content:"";
display:table;
clear:both;
}
.block {
clear: both;
}
article {
border-top: 2px solid #efefed;
padding-top: 1em;
margin-top: 2em;
}
/* Layout
------------------------------------------------------
This rebel HQ consists of buildings with various heights.
Some pages are a low-rise with three storeys.
Others pages have several floors below the attic.
And the front page has a swanky penthouse on top.
/-----/ attic (or penthouse!)
======= floor
======= floor
======= floor
####### cellar */
.attic {
background-color: #4F4F4A;
margin-bottom: 20px;
}
.attic .inner {
padding-top: 2em;
}
.floor {
}
.inner,
.inner-nrw,
.inner-wide {
max-width: 90%;
margin: 0 auto;
}
@media screen and (min-width: 1100px) {
.inner {
max-width: 1000px;
}
.inner-nrw {
max-width: 800px;
}
}
@media screen and (min-width: 1350px) {
.inner-wide {
width: 90%;
max-width: 1140px;
}
}
/* specific interiors for fancier floors of the building above the fold */
.penthouse {
background: #4F4F4A url("img/bg-penthouse.svg") no-repeat 50% 100%;
background-size: contain;
min-height: 200px;
}
@media screen and (min-width: 800px) {
.penthouse {
min-height: 300px;
margin-bottom: 10px;
}
}
@media screen and (min-width: 1200px) {
.penthouse {
background-size: contain;
min-height: 450px;
}
}
/* Typography above the fold
------------------------------------------------------ */
.ratherloud-rebel,
.ratherloud-heading {
font-family: RatherLoud;
font-size: 2em;
font-style: normal;
font-weight: normal;
line-height: 0.85;
}
@media screen and (min-width: 800px) {
.ratherloud-rebel,
.ratherloud-heading {
font-size: 3em;
}
.rebelwithalongname {
font-size: 2.5em;
}
}
@media screen and (min-width: 1000px) {
.ratherloud-heading {
font-size: 4em;
}
.rebels .ratherloud-rebel {
font-size: 4em;
}
}
.video-thanks {
margin-bottom: 0;
font-style: italic;
}
/* Colours
------------------------------------------------------*/
.c0 {color: #3c3c3a;}
.c1 {color: #997671;}
.c2 {color: #688C84;}
.c3 {color: #9D9D9D;}
.c4 {color: #ccbea7;}
/* Modules above the fold
------------------------------------------------------*/
/* Logo and info in the header */
.logo {
width: 35%;
max-width: 250px;
float: left;
margin-right: 5%;
}
.logo > a:hover {
position: relative;
top: 1px;
}
.info {
}
@media screen and (min-width: 1000px) {
.logo {
width: 400px;
max-width: 400px;
float: left;
margin-right: 2em;
}
.info {
width: 400px;
float: left;
text-align: left;
}
}
/* Front page chunks of content */
.gridone,
.gridtwo {
}
@media screen and (min-width: 600px) {
.gridone {
width: 48.5%;
float: left;
}
.gridone-a {
margin-right: 3%;
}
.gridone-b {
clear: right;
}
.gridtwo {
width: 100%;
float: left;
}
}
.chunk {
border-color: currentColor;
background-repeat: no-repeat; /* yep */
margin-bottom: 20px;
}
.chunk-linkbox {
/* background-color: #fff; meh */
box-sizing: border-box;
border-width: 6px;
border-style: solid;
border-color: inherit;
display: block;
padding: 1em 1em 0.75em 1em;
}
.chunk-linkbox h2 {
margin-bottom: 0.1em;
}
.chunk-linkbox p {
color: #444;
margin-bottom: 0;
}
.chunk-linkbox:hover {
opacity: 0.8;
}
/* chunk styles for tickes, openmic, about, previous, sponsors */
.chunk-tickets {
background-image: url("img/chunk-tickets.svg");
background-position: 95% 0;
background-size: auto 140px;
}
.chunk-tickets .chunk-linkbox {
padding-right: 80px;
}
.chunk-openmic {
background-image: url("img/chunk-openmic.svg");
background-position: 95% 100%;
background-size: auto 80px;
}
.chunk-openmic .chunk-linkbox {
padding-right: 60px;
}
.chunk-about {
background-image: url("img/chunk-webrebels.svg");
background-position: 0px 0px;
background-size: auto 60px;
background-position: 97% 100%;
}
.chunk-about .chunk-linkbox {
padding-bottom: 40px;
}
.chunk-lookingback {
background-image: url("img/chunk-lookingback.svg");
background-position: 10px 10px;
background-size: auto 50px;
}
.chunk-lookingback h2 {
padding-left: 60px;
}
.chunk-sponsors {
background-image: url("img/chunk-sponsors.svg");
background-size: auto 60px;
background-position: 95% 10px;
}
.chunk-sponsors .chunk-linkbox {
}
.chunk-location {
background-image: url("img/chunk-location.svg");
background-size: auto 70px;
background-position: 95% 100%;
}
.chunk-location .chunk-linkbox {
padding-bottom: 50px;
}
.chunk-schedule {
background-image: url("img/chunk-schedule.svg");
background-size: auto 60px;
background-position: 95% 10px;
}
.chunk-schedule .chunk-linkbox {
}
@media screen and (min-width: 800px) {
.chunk {
margin-bottom: 30px;
}
.chunk-linkbox h2 {
margin-bottom: 0.03em;
}
.chunk-tickets {
background-size: auto 120%;
background-position: 97% -40px;
padding-bottom: 25px;
margin-bottom: -25px;
}
.chunk-tickets .chunk-linkbox {
padding-right: 120px;
padding-bottom: 0.75em;
}
.chunk-openmic {
background-size: auto 90%;
background-position: 92% 100%;
padding-bottom: 0.75em;
padding-right: 20px;
margin-right: -20px;
margin-bottom: 20px;
}
.chunk-openmic .chunk-linkbox {
padding-right: 120px;
padding-bottom: 0.75em;
}
.chunk-about {
background-size: auto 95%;
background-position: bottom left;
}
.chunk-about .chunk-linkbox {
padding-left: 140px;
padding-bottom: 0.75em;
}
.chunk-lookingback {
background-size: auto 100px;
background-position: -10px 0;
padding-left: 20px;
margin-left: -20px;
}
.chunk-lookingback h2 {
padding-left: 80px;
}
.chunk-sponsors {
background-size: auto 140px;
background-position: 100% 0;
padding-top: 30px;
margin-top: -30px;
}
.chunk-sponsors .chunk-linkbox {
}
.chunk-location {
background-size: auto 150px;
background-position: 97% 100%;
}
.chunk-location .chunk-linkbox {
padding-bottom: 0.75em;
padding-right: 90px;
}
.chunk-schedule {
background-image: url("img/chunk-schedule.svg");
background-size: auto 120px;
background-position: 100% 0;
padding-top: 40px;
margin-top: -40px;
}
.chunk-schedule .chunk-linkbox {
}
}
/* Video player */
.video {
display: none;
}
@media screen and (min-width: 900px) {
.video {
display: block;
}
}
.video-box {
box-sizing: border-box;
border-width: 6px;
border-style: solid;
border-color: inherit;
display: block;
padding: 1em 1em 0.25em 1em;
}
#qbrick_professional_qbrick1 {
width: 952px !important;
height: 536px !important;
}</style>
<script>document.createElement('picture');</script>
<script async="true" defer="true" src="js/app.js"></script>
</head>
<header class="attic ">
<div class="inner group">
<h1 class="visuallyhidden">Web Rebels Conference</h1>
<div class="logo">
<a href="index.html"><img class="logo-img" src="img/logo-webrebels.svg" alt="Web Rebels"></a>
</div>
<div class="info">
<h1 class="ratherloud-heading c4">21<span>–</span>22 May 2015</h1>
<h1 class="ratherloud-heading c3">Oslo, Norway</h1>
</div>
</div>
</header>
<div class="floor">
<div class="inner-nrw">
<h1 class="ratherloud-heading">Scholarship Programme</h1>
<p>
Web Rebels is a conference organised by and for the community,
and it's important to us that all members of the community
should be included, also those who would normally be unable to
attend for financial reasons. We're very happy to be able to
offer <em>The Web Rebels Scholarship Programme</em> to offer financial
aid to people from underrepresented groups wanting to attend the
conference.
</p>
<h2>Thanks to our scholarship sponsors</h2>
<p>The Scholarship program would not be possible without the help of our Scholarship sponsors:
</div>
</div>
<div class="floor">
<div class="inner-wide">
<ul class="sponsors group">
<li><a href="http://www.finn.no/" title="Finn.no"><img src="img/sponsors/finn.png" alt="Finn.no"></a></li>
<li><a href="http://bocoup.com/" title="Bocoup"><img src="img/sponsors/bocoup.png" alt="Bocoup"></a></li>
<li><a href="https://twitter.com/leftieFriele" title="leftieFriele"><img src="img/sponsors/leftiefriele.png" alt="leftieFriele"></a></li>
<li><a href="http://www.knowit.no/" title="Knowit Norge"><img src="img/sponsors/knowit.png" alt="Knowit"></a></li>
</ul>
</div>
</div>
<div class="floor">
<div class="inner-nrw">
<p>Companies can contribute by buying the <a href="sponsors/packages.html#scholarship">Scholarship Ticket</a> package.</p>
<a name="eligibility"></a>
<h2>Eligibility</h2>
<p>
Scholarships are primarily intended to assist people from groups
traditionally underrepresented in the local developer community,
including women, people of non-Scandinavian descent and people
with disabilities. However, we wouldn't presume to be able to
provide a complete list of underrepresented groups, so all
applications will be considered. Eligibility ultimately depends
on the discretion of the selection committee.
</p>
<a name="selection"></a>
<h2>Selection</h2>
<p>
All applications will be reviewed by the selection committee,
and will be accepted at their discretion, although selection
will primarily favour diversity concerns and financial need. All
information provided to the committee will be kept strictly
confidential.
</p>
<a name="award"></a>
<h2>Award</h2>
<p>
Selected applicants will receive a fully paid ticket for the
conference, and may also apply for travel and lodging
assistance, although our ability to offer this will be more
limited.
</p>
<a name="award"></a>
<h2>Application period is over</h2>
<p>
The Scholarships application period is over and all applicants will be notified via email by March 27th. If your application is accepted,
you will receive your conference registration details and other
relevant information along with the notification.
</p>
<!--
<p>
You can apply by completing the form by March 20th.
</p>
<div class="openmicform group">
<h2>Apply for Web Rebels Scholarship</h2>
<form action="/api/v1/scholarship" method="post">
<label for="name" class="notsoloud">Full name</label>
<input type="text" name="name" id="name" required>
<label for="email" class="notsoloud">Email Address</label>
<input type="email" name="email" id="email" required>
<label for="country" class="notsoloud">Country</label>
<input type="country" name="country" id="country" required>
<label for="application" class="notsoloud">Application</label>
<textarea name="application" id="application" rows="4" required></textarea>
<input type="submit" class="btn">
</form>
</div>
<p>
All applicants will be notified via email by
March 27th. If your application is accepted,
you will receive your conference registration details and other
relevant information along with the notification.
</p>
-->
<h2>Questions?</h2>
<p>
If you have further questions about the Scholarship Programme,
please contact <a href="mailto:[email protected]">[email protected]</a>.
</p>
</div>
</div>
<div class="floor whereSponsorsLive">
<div class="inner-wide">
<h2 class="visuallyhidden">Sponsors</h2>
<ul class="sponsors group">
<li><span class="featured">Breakfast</span><a href="http://netliferesearch.com/" title="Netlife Research">
<img src="img/sponsors/netlife.png" alt="Netlife Research"></a></li>
<li><span class="featured">Lunch</span><a href="http://www.accenture.no/" title="Accenture">
<img src="img/sponsors/accenture.png" alt="Accenture"></a></li>
<li><span class="featured">Chill out</span><a href="http://www.ciber.no" title="Ciber">
<img src="img/sponsors/ciber.png" alt="Ciber"></a></li>
<li><span class="featured">★★★</span><a href="http://bouvet.no" title="Bouvet"><img src="img/sponsors/bouvet.png" alt="Bouvet"></a></li>
<li><span class="featured">Coffee</span><a href="http://mandrill.com/" title="Mandrill"><img src="img/sponsors/mandrill.png" alt="Mandrill"></a></li>
<li><a href="http://bekk.no" title="Bekk"><img src="img/sponsors/bekk.png" alt="Bekk"></a></li>
<li><a href="http://kodemaker.no" title="Kodemaker"><img src="img/sponsors/kodemaker.png" alt="Kodemaker"></a></li>
<li><a href="http://www.xeneta.com" title="Xeneta"><img src="img/sponsors/xeneta.png" alt="Xeneta"></a></li>
<li><a href="https://www.paypal.com" title="PayPal"><img src="img/sponsors/paypal.png" alt="PayPal"></a></li>
<li><a href="http://www.knowit.no/" title="Knowit Norge"><img src="img/sponsors/knowit.png" alt="Knowit"></a></li>
<li><a href="http://www.webstep.com/" title="Webstep"><img src="img/sponsors/webstep.png" alt="Webstep"></a></li>
<li><a href="http://www.finn.no/" title="Finn.no"><img src="img/sponsors/finn.png" alt="Finn.no"></a></li>
<li><a href="http://bocoup.com/" title="Bocoup"><img src="img/sponsors/bocoup.png" alt="Bocoup"></a></li>
<li><a href="https://modulus.io/" title="Modulus"><img src="img/sponsors/modulus.png" alt="Modulus"></a></li>
<li><a href="http://www.microsoft.no/" title="Microsoft"><img src="img/sponsors/microsoft.png" alt="Microsoft"></a></li>
<li><a href="http://www.amedia.no/" title="amedia"><img src="img/sponsors/amedia.png" alt="amedia"></a></li>
</ul>
</div>
</div>
<footer class="cellar">
<div class="inner">
<ul class="menu notsoloud">
<li class="menu-item"><a href="about.html">About</a></li>
<li class="menu-item"><a href="speakers.html">Speakers</a></li>
<li class="menu-item"><a href="location.html">Location</a></li>
<li class="menu-item"><a href="schedule.html">Schedule</a></li>
<li class="menu-item"><a href="videos.html">Videos</a></li>
<li class="menu-item"><a href="tickets.html">Tickets</a></li>
<li class="menu-item"><a href="openmic.html">Open Mic</a></li>
<li class="menu-item"><a href="http://oslo.nodeconf.com/">ONE-SHOT</a></li>
<li class="menu-item"><a href="sponsors.html">Sponsors</a></li>
<li class="menu-item"><a href="oslo.html">Oslo Survival Guide</a></li>
<li class="menu-item"><a href="family.html">Family Rebels</a></li>
<li class="menu-item"><a href="scholarship.html" title="Web Rebels Scholarship Programme">Scholarship Programme</a></li>
<li class="menu-item"><a href="about.html">Code of Conduct</a></li>
</ul>
<h2 id="moar" class="notsoloud">Check out previous years! And remember to find, follow, track, like & love us elsewhere:</h2>
<ul class="menu notsoloud">
<li class="menu-item"><a href="http://2014.webrebels.org/">WR 2014</a></li>
<li class="menu-item"><a href="http://2013.webrebels.org/">WR 2013</a></li>
<li class="menu-item"><a href="http://2012.webrebels.org/">WR 2012</a></li>
<li class="menu-item"><a href="http://twitter.com/web_rebels">Twitter</a></li>
<li class="menu-item"><a href="http://lanyrd.com/2015/webrebels/">Lanyrd</a></li>
<li class="menu-item"><a href="http://flickr.com/webrebels">Photos</a></li>
<li class="menu-item"><a href="https://vimeo.com/webrebels">Video of talks</a></li>
<li class="menu-item"><a href="http://webrebels.tumblr.com">Tumblr</a></li>
</ul>
</div>
</footer>
<script>
var cb = function() {
var l = document.createElement('link'); l.rel = 'stylesheet';
l.href = 'css/app.css';
var h = document.getElementsByTagName('head')[0]; h.parentNode.insertBefore(l, h);
};
var raf = requestAnimationFrame || mozRequestAnimationFrame ||
webkitRequestAnimationFrame || msRequestAnimationFrame;
if (raf) raf(cb);
else window.addEventListener('load', cb);
</script>
</body>
</html>