-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathindex.html
84 lines (68 loc) · 3.31 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
---
layout: default
page_class: "home"
description: "Welcome to the Amsterdam Ruby meetup group! RSVP for our next event or catch up on the last event."
livestream_link: ""
meetup_link: "https://www.meetup.com/amsterdam-rb/events/306538127"
---
<section class="hero" id="hero">
<div class="color-overlay">
{% include header.html %}
<div class="dark-content">
<div class="wrap">
<h1 class="highlight">
<div class="logo"><img src="/assets/images/logo.svg" alt=""></div>Amsterdam.rb
</h1>
<p>The Amsterdam Ruby meetup group</p>
</div>
</div>
</div>
</section>
<main>
{% comment %}
To make the YouTube livestream visible, update the `livestream_link` variable at the top page. If the variable value is an empty string, the video will be hidden.
{% endcomment %}
{% if page.livestream_link != "" %}
<section class="livestream light-content" id="livestream">
<div class="wrap">
<h2 class="big">Last meetup recording</h2>
<iframe width="746" height="420" src="{{ page.livestream_link }}" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<p>Future and past meetups can be found on the <a href="{{ site.youtube_channel_url }}">Ruby NL YouTube channel</a>.</p>
</div>
</section>
{% endif %}
<section class="meetup2 light-content content-with-shadow" id="meetup">
<div class="wrap">
<h2 class="big">Next meetup</h2>
<!-- <p class="date">18th of June, 2024</p> -->
<!-- <p>Location: <a href="https://maps.app.goo.gl/ziU3LV7ohcPGWzZeA">BetterUp, Jozef Israëlskade 46, Amsterdam</a></p> -->
<div class="text-content">
<p>Hello Rubyists! ☀️👋</p>
<p>Join us for the May meetup at Zilverline! We're back with new talks and chat with people from the community. Anyone interested in learning more about Ruby and the local tech community is welcome to join!</p>
<p>There will be <strong>no stream</strong> this time, so be sure to join in person.</p>
<p><strong>Program</strong></p>
<ul>
<li>18:00: Doors open, have a drink and some food</li>
<li>19:00: Opening statements</li>
<li>First slot: Roman Samoilov: Modernising Ruby Systems with Rage</li>
<li>Second slot: TBA</li>
<li>Socializing and networking</li>
</ul>
<p>This month's meetup will take place at the <a href="https://www.zilverline.com/">Zilverline office</a>! They will also provide the delicious food and drinks to power us through the evening 😋</p>
<p>Cheers,</p>
<p>Tom, Arno and Aidan</p>
</div>
{% comment %}
To update the meetup link, change the `meetup_link` variable at the top of the page. If the variable value is an empty string, the link will be hidden.
{% endcomment %}
{% if page.meetup_link != "" %}
<div class="button-group text-right">
<a class="button" href="{{ page.meetup_link }}">Join the Meetup</a>
</div>
{% endif %}
<div class="text-content">
<p><em>PS. Are you interested in giving a talk at one of these meetups? Check out our <a href="/speakers">"Give a talk!" page</a> and send us your idea!</em></p>
</div>
</div>
</section>
</main>