-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.html
145 lines (130 loc) · 4.7 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
---
layout: blog_loader
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 & Workshops</p>
<p>
{{site.dates.talks}} {{site.dates.year}}
</p>
<p class="note">
<a href="/talks">Talks</a>
|
<a href="/workshops">Workshops</a>
</p>
</div>
<div>
<p class="desc">impl Days</p>
<p>
{{site.dates.impl_days}} {{site.dates.year}}
</p>
<p class="note">
<a href="/about_impl_days">What are the <code class="highlighter-rouge">impl Days</code>?</a>
</p>
</div>
</div>
<div class="itemgroup">
<div class="location">
<p class="desc">Venue Location</p>
<p>
<address title="Address">
<a href="/location/#venue">{{site.location.venue}}</a><br />
{{site.location.city}}, {{site.location.country}}<br/>
</address>
</p>
</div>
<div>
<p class="desc">Pre-/Post-Conf Events</p>
<p>
October / November {{site.dates.year}}
</p>
<p class="note">
<a href="/pre_post_conf_events/">Events happening around the conference</a>
</p>
</div>
</div>
</section>
</div>
<div class='videoplaylist'>
<section>
<h1>Video Recordings</h1>
<div class="embed ratio-16-9">
<iframe width="1120" height="630" src="https://www.youtube.com/embed/videoseries?list=PL85XCvVPmGQg-dewHRpM08JkGrBPdIVHw" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" 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}}" rel="sponsored"><img src="/assets/sponsors/{{sponsor.slug}}.{% if sponsor.png %}png{% else %}svg{% endif %}" alt="Logo of {{sponsor.name}}" /></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}}" rel="sponsored"><img src="/assets/sponsors/{{sponsor.slug}}.{% if sponsor.png %}png{% else %}svg{% endif %}" alt="Logo of {{sponsor.name}}" /></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}}" rel="sponsored"><img src="/assets/sponsors/{{sponsor.slug}}.{% if sponsor.png %}png{% else %}svg{% endif %}" alt="Logo of {{sponsor.name}}" /></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="https://blog.rustfest.eu/feed.xml" target="_blank" aria-label="Link to the RSS Feed">{% 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>