-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
166 lines (150 loc) · 5.1 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
---
layout: default
bodytags: with-hero
---
<div class="hero">
<section>
<h1>RustFest {{site.location.city}} {{site.dates.year}}</h1>
<p>Let's meet again at a conference dedicated to the Rust programming language</p>
<div class="itemgroup">
<div>
<p class="desc">Talks</p>
<p>
{{site.dates.talks}}<br>
</p>
<p class="note">
<a href="/talks">Talks</a>
</p>
</div>
<div>
<p class="desc">Workshops</p>
<p>
{{site.dates.workshops}}<br />
</p>
<p class="note">
<a href="/workshops">Workshops</a>
</p>
</div>
<div>
<p class="desc">impl Days</p>
<p>
{{site.dates.impl_days}}, {{site.dates.year}}
<p class="note">
<a href="/about_impl_days">What are the <code class="highlighter-rouge">impl Days</code>?</a>
</p>
</p>
</div>
<div class="location">
<p class="desc">Talk Location</p>
<p>
<address title="Address">
<a href="/location/">{{site.location.venue}}</a><br />
{{site.location.city}}, {{site.location.country}}<br/>
</address>
</p>
</div>
<div class="location">
<p class="desc">Workshops Locations</p>
<p>
<address title="Address">
<a href="/location/">{{site.location.venue}}</a><br />
{{site.location.city}}, {{site.location.country}}<br/>
</address>
</p>
<p>
<address title="Address">
<a href="/location/">{{site.location.second_venue}}</a><br />
{{site.location.city}}, {{site.location.country}}<br/>
</address>
</p>
</div>
<div class="location">
<p class="desc">impl Days Location</p>
<p>
<address title="Address">
<a href="/location/#impl-days-nov-26th-and-27th-2018">Eurostars Roma Aeterna</a><br />
Via Casilina, 125 / Piazza del Pigneto 9a, Rome 00176, Italy<br/>
</address>
</p>
</div>
</div>
</section>
</div>
<div class='videoplaylist'>
<section>
<h1>Video Recordings</h1>
<div class="embed ratio-16-9">
<iframe src="https://www.youtube.com/embed/videoseries?list=PL85XCvVPmGQjEE4ICTuXGLXUDZQUuanJy" frameborder="0" allowfullscreen></iframe>
</div>
</section>
<br />
</div>
{% assign platinum_sponsors = site.sponsors | where: "level", "platinum" %}
{% assign gold_sponsors = site.sponsors | where: "level", "gold" %}
{% assign silver_sponsors = site.sponsors | where: "level", "silver" %}
<div class='popout sponsors'>
<section>
<h1>Sponsors</h1>
{% if platinum_sponsors[0] %}
<h2>Platinum Sponsor{% if platinum_sponsors[1] %}s{% endif %}</h2>
<ul>
{% for sponsor in platinum_sponsors %}
<li><a href="{{sponsor.link}}" title="{{sponsor.name}}"><img src="/assets/sponsors/{{sponsor.slug}}.{% if sponsor.png %}png{% else %}svg{% endif %}" /></a></li>
{% endfor %}
</ul>
{% endif %}
{% if gold_sponsors[0] %}
<h2>Gold Sponsor{% if gold_sponsors[1] %}s{% endif %}</h2>
<ul class="gold">
{% for sponsor in gold_sponsors %}
<li><a href="{{sponsor.link}}" title="{{sponsor.name}}"><img src="/assets/sponsors/{{sponsor.slug}}.{% if sponsor.png %}png{% else %}svg{% endif %}" /></a></li>
{% endfor %}
</ul>
{% endif %}
{% if silver_sponsors[0] %}
<h2>Silver Sponsor{% if silver_sponsors[1] %}s{% endif %}</h2>
<ul class="silver">
{% for sponsor in silver_sponsors %}
<li><a href="{{sponsor.link}}" title="{{sponsor.name}}"><img src="/assets/sponsors/{{sponsor.slug}}.{% if sponsor.png %}png{% else %}svg{% endif %}" /></a></li>
{% endfor %}
</ul>
{% endif %}
<div style="text-align: right">
<a class="button primary" href="/sponsors/">
See all our sponsors
</a>
</div>
</section>
</div>
<div id="news">
<section>
<h2 class="headline">Latest news <a href="{{ "/feed.xml" | prepend: site.baseurl }}" target="_blank">{% include icons/rss-square.svg %}</a></h2>
<div class="post">
</div>
<div style="text-align: right">
<a href="https://blog.rustfest.eu/">» more news</a>
</div>
</section>
</div>
<div id="newsletter">
<section>
<h2>Stay up to date</h2>
<form id="mailchimpForm" class="formInput" action="https://{{site.mailchimp.server}}/subscribe/post" method="POST">
<p>
Join our mailing list to always receive the latest infos:
</p>
<input type="hidden" value="{{site.mailchimp.user}}" name="u" />
<input type="hidden" value="{{site.mailchimp.id}}" name="id" />
<div class="group">
<input type="email" id="js-email" name="EMAIL" required placeholder="[email protected]" />
<button type="submit">Sign up</button>
</div>
</form>
</section>
<section class="twitter">
<h2>Follow us on twitter</h2>
<a class="inline" href="https://www.twitter.com/{{site.social.twitter}}" >
{% include icons/twitter.svg %} @{{site.social.twitter}}
</a>
</section>
</div>