-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathindex.html
139 lines (131 loc) · 4.44 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
---
layout: default
title: Ruby on Rio
future_events:
- day: Sexta, 03 de Maio de 2024
event_hours: '19h00'
event_address: 'Le Wagon: Rua Visconde de Pirajá, 142 - Ipanema. Rio de Janeiro, RJ'
<!-- meetup: 'https://www.meetup.com/pt-BR/rubyonrio/events/289654742/' -->
<!-- submission_form: 'https://forms.gle/qAhjNbzz1YTvaH818' -->
---
<div class="containner">
<div class="hero">
<section class="intro">
<h2>Bem vindo ao site <br>do grupo Ruby on Rio.</h2>
</section>
<article class="next-meetup">
<div class="title"><h2>Próximo Encontro</h2></div>
<div class="schedule">
{% for event in page.future_events limit:1 %}
<i class="fa fa-calendar-o"></i>
<p>{{ event.day }}</p>
<i class="fa fa-clock-o"></i>
<p>{{ event.event_hours }}<p>
<i class="fa fa-map-marker"></i>
<p>{{ event.event_address }}</p>
{% if event.link_for_submission %}
<i class="fa fa-paper-plane-o"></i>
<p>
<a target='_blank' href='{{ event.link_for_submission }}'>
Submeta sua palestra!
</a>
</p>
{% endif %}
<!-- {% if event.submission_form %}
<i class="fa fa-user-plus"></i>
<p>
<a target='_blank' href='{{ event.submission_form }}'>
Se inscreva!
</a>
</p>
{% endif %}
{% if event.meetup %}
<i class="fa fa-meetup"></i>
<p>
<a target='_blank' href='{{ event.meetup }}'>
{% if event.submission_form %}
Confira
{% else %}
Confirme
{% endif %}
no Meetup!
</a>
</p>
{% endif %} -->
{% endfor %}
</div>
</article>
</div>
</div>
<div class="containner">
<section class="infos">
<article class="about-group">
<h3>Sobre o Grupo</h3>
<br>
<p>
O Ruby on Rio é o grupo de usuários de Ruby do Rio de Janeiro. O grupo nasceu como forma de unir desenvolvedores e pessoas interessadas na linguagem de programação Ruby.
</p>
<p>
No grupo falamos sobre Ruby, Rails e outras tecnologias relacionadas. O grupo funciona como um meio para aproximar pessoas promovendo troca de conhecimento, seja para aprender ou ensinar Ruby e seu vasto ecossistema de frameworks, bibliotecas e aplicações.
</p>
<br>
</article>
<aside class="about-meetings">
<p>Realizamos encontros presencias mensalmente. Nesses encontros, fazemos apresentações, codificamos aplicações e projetos open source, regamos a muito bate papo sobre Ruby e outras tecnologias.</p>
<p>Para acompanhar o que acontece na Ruby on Rio,</p>
<!-- <a class="b" href="https://groups.google.com/forum/#!forum/rubyonrio" target="_blank">Faça parte da lista de discussão</a> -->
<a class="b" href="https://telegram.me/joinchat/BHHBuj9mw2_r7L3qKdxnCA" target="_blank">Entre no nosso grupo do Telegram</a>
</aside>
</section>
</div>
<div class="avatars"></div>
<div class="containner">
<section class="meetings">
<article class="last-meetings">
<h3>Sobre os encontros</h3>
<ul>
{% for post in site.posts %}
<li>
<h4>{{ post.title }}</h4>
<p>
{{ post.excerpt }}
</p>
<br>
<a class="b" href="{{ post.url }}">Saiba Mais</a>
</li>
{% endfor %}
</ul>
</article>
<aside class="next-meetings">
<h3>Encontros Futuros</h3>
<ul>
{% for event in page.future_events limit:3 %}
<li>
<i class="fa fa-calendar-o"></i>
<p>{{ event.day }}</p>
<i class="fa fa-clock-o"></i>
<p>{{ event.event_hours }}<p>
<i class="fa fa-map-marker"></i>
<p>{{ event.event_address }}</p>
{% if event.link_for_submission %}
<i class="fa fa-paper-plane"></i>
<p>
<a target='_blank' href='{{ event.link_for_submission }}'>
Submeta sua palestra!
</a>
</p>
{% endif %}
{% if event.meetup %}
<i class="fa fa-meetup"></i>
<p>
<a target='_blank' href='{{ event.meetup }}'>
Confirme no Meetup!
</a>
</p>
{% endif %}
</li>
{% endfor %}
</ul>
</aside>
</section>
</div>