This repository was archived by the owner on Oct 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
162 lines (146 loc) · 5.8 KB
/
index.html
File metadata and controls
162 lines (146 loc) · 5.8 KB
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
---
layout: page
menuTitle: Home
order: 1
---
<section class="section-home-banner">
<div class="section-container">
<h1 class="section-home-banner__title">
<div class="section-home-banner__title__name">EURUKO</div>
<div class="section-home-banner__title__year">2017</div>
</h1>
<div class="section-home-banner__info">
<p class="section-home-banner__info__title">
THE ANNUAL EUROPEAN RUBY CONFERENCE WILL TAKE PLACE IN BUDAPEST
</p>
<div class="section-home-banner__info__divider"></div>
<p class="section-home-banner__info__date">
ON 29TH-30TH OF SEPTEMBER, 2017
</p>
<div class="section-home-banner__info__sold-out-wrapper">
<p class="section-home-banner__info__sold-out">
SORRY, THE OFFICIAL TICKETS ARE SOLD OUT.
</p>
<p class="section-home-banner__info__exchange">
We recommend you to keep checking
<a
href="https://www.ticketswap.com/event/euruko-2017/a7e9ed0a-c800-4159-9e4d-89ac03cff909"
target="_blank"
rel="noopener noreferrer"
>ticketswap</a><br>
for buying and selling spare tickets.
</p>
<div>
</div>
</div>
</section>
<section class="section-home-speakers">
<div class="section-container section-container--full">
<h2 class="section__title">Speakers</h2>
<div class="section-home-speakers__speakers-list">
{% for speaker in site.data.speakers %}
<a
class="section-home-speakers__speaker"
href="/speakers/#{{ speaker.id }}"
>
<img class="section-home-speakers__speaker-photo" src="{{ speaker.photo }}" alt="{{ speaker.name }}">
<div class="section-home-speakers__speaker-name">{{ speaker.name }}</div>
</a>
{% endfor %}
</div>
</div>
</section>
<section class="section-home-stay-tuned">
<div class="section-container section-container--full">
<h2 class="section__title">Stay tuned!</h2>
<p>
Sign up our newsletter and we keep you up-to-date
</p>
{% include subscription-form.html %}
</div>
</section>
<section class="section-home-location">
<div class="section-container section-container--divided">
<div class="section__side section__side__text-left">
<h2 class="section__title">Location</h2>
<p>Often described as the "Little Paris of Middle Europe", Budapest is famous not only for the monuments reflecting its own 1,000-year-old culture, but also for the dazzling nightlife of the city.</p>
<p><a href="/location/">More about the venue</a></p>
</div>
<div class="section__side section__side__image"></div>
</div>
</section>
<section class="section-home-sponsors">
<div class="section-container section-container--full">
<h2 class="section__title">Our Sponsors</h2>
<div class="section-home-sponsors__logos">
<div class="section-home-sponsors__logo">
<a href="https://www.catawiki.com/" class="section-home-sponsors__link">
<img src="/assets/sponsors/catawiki_index.png">
</a>
</div>
<div class="section-home-sponsors__logo">
<a href="https://www.heroku.com/" class="section-home-sponsors__link">
<img src="/assets/sponsors/heroku.png">
</a>
</div>
<div class="section-home-sponsors__logo">
<a href="https://www.fyber.com/" class="section-home-sponsors__link">
<img src="/assets/sponsors/fyber.png">
</a>
</div>
<div class="section-home-sponsors__logo">
<a href="https://www.sqreen.io" class="section-home-sponsors__link">
<img src="/assets/sponsors/sqreen_index.png">
</a>
</div>
<div class="section-home-sponsors__logo">
<a href="https://www.toptal.com/top-3-percent?utm_source=euroko2017HU&utm_medium=logo&utm_campaign=sponsorships" class="section-home-sponsors__link">
<img src="/assets/sponsors/toptal.png">
</a>
</div>
<div class="section-home-sponsors__logo">
<a href="https://deliveroo.co.uk/" class="section-home-sponsors__link">
<img src="/assets/sponsors/deliveroo_index.png">
</a>
</div>
<div class="section-home-sponsors__logo">
<a href="https://www.digitalnatives.hu" class="section-home-sponsors__link">
<img src="/assets/sponsors/digitalnatives_index.png">
</a>
</div>
</div>
<div class="section-home-sponsors__text">
<p class="section-home-sponsors__paragraph">
EuRuKo wouldn't happen without support from the community!<br />
We appreciate all support we get and thank personally to every company that takes part in the conference.
</p>
<p class="section-home-sponsors__paragraph">
<a href="/sponsors/">LEARN MORE</a>
</p>
</div>
</div>
</section>
<script>
(function(){
if ( window.location.hash ) {
var soldOutWrapper = document.querySelector( ".section-home-banner__info__sold-out-wrapper" );
if ( soldOutWrapper ) {
soldOutWrapper.className += " section-home-banner__info__sold-out-wrapper--highlighted";
}
}
document.addEventListener( "click", function ( e ) {
if ( e.target.classList.contains("highlight-sold-out") ) {
var soldOutWrapper = document.querySelector( ".section-home-banner__info__sold-out-wrapper" );
soldOutWrapper.classList.remove("section-home-banner__info__sold-out-wrapper--highlighted");
setTimeout( function() {
soldOutWrapper.classList.add("section-home-banner__info__sold-out-wrapper--highlighted");
}, 50);
var navToggle = document.querySelector( "#nav__toggle" );
if ( navToggle && navToggle.checked ) {
navToggle.checked = false;
window.scroll(0, soldOutWrapper.getClientRects()[0].top - 50);
}
}
});
})();
</script>