forked from rubyonrio/rubyonrio.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (70 loc) · 2.33 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
---
layout: default
title: Ruby on Rio
address: DTM - Travessa do Ouvidor, 17 - 501, Centro, Rio de Janeiro
events:
-
day: 15
month: Fevereiro
status: "next"
-
day: 15
month: Março
status: "future"
-
day: 19
month: Abril
status: "future"
-
day: 17
month: Maio
status: "future"
-
day: 21
month: Junho
status: "future"
-
day: 19
month: Julho
status: "future"
-
day: 20
month: Setembro
status: "future"
-
day: 18
month: Outubro
status: "future"
-
day: 20
month: Dezembro
status: "future"
---
<section class="centralized">
<article class="next-meetup">
<h2>Próximo Encontro: </h2>
<p><i class="icon-map-marker icon-white"></i>{{ page.address }}</p>
{% for event in page.events %}
{% if event.status == "next" %}
<p><i class="icon-time icon-white"></i>Sábado, {{ event.day }} de {{ event.month }} de 2014 às 13:00 ~ 18:00</p>
{% endif %}
{% endfor %}
</article>
<article class="about">
<h2>Bem vindo ao site do Ruby on Rio</h2>
<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 para de troca de conhecimento, seja para aprender ou ensinar Ruby e seu vasto ecossistema de frameworks, bibliotecas e aplicações.</p>
<h2>Encontros presenciais</h2>
<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, <a href="https://groups.google.com/forum/?fromgroupsrubyonrio#!forum/rubyonrio">faça parte da lista de discução</a>.</p>
</article>
<article class="next-meetup">
<h2>Encontros futuros: </h2>
<p><i class="icon-map-marker icon-white"></i>{{ page.address }}</p>
{% for event in page.events %}
{% if event.status == "future" %}
<p><i class="icon-time icon-white"></i>Sábado, {{ event.day }} de {{ event.month }} de 2014 às 13:00 ~ 18:00</p>
{% endif %}
{% endfor %}
</article>
</section>