-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·131 lines (82 loc) · 3.23 KB
/
index.html
File metadata and controls
executable file
·131 lines (82 loc) · 3.23 KB
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
---
layout: default
title: Home
---
<a target="_blank" href="https://paraibajs1.typeform.com/to/hOA4CO" class="send-talk btn btn-danger">
<span class="glyphicon glyphicon-arrow-up"></span>
Submeta sua talk
</a>
{% for post in site.meetups %}
{% assign first = post %}
{% endfor %}
{% if first.passed == 0 %}
<h2>Próximo Meetup</h2>
<div id="mapa" class="mapa" data-endereco="{{ first.endereco }}"></div>
<span class="item">Data:</span> {{ first.data }}<br />
<span class="item">Local:</span> {{ first.local }} <br />
<span class="item">Horário:</span> {{ first.horario }}
{{ first.content }}
<h3>Talks</h3>
<div class="talks-container">
{% for ordem in (1..10) %}
{% for post in site.talks %}
{% if post.meetup == first.slug %}
{% if post.order == ordem %}
<div class="talk">
<figure>
<img data-email="{{ post.author_email }}" />
</figure>
<div class="right">
<h4>{{post.horario}} | {{ post.title }} - {{post.author}}</h4>
<p>{{ post.content }}</p>
</div>
</div>
{% endif %}
{% endif %}
{% endfor %}
{% endfor %}
</div>
{% else %}
<h2>{{first.title}}</h2>
<div id="mapa" class="mapa" data-endereco="{{ first.endereco }}"></div>
<span class="item">Data:</span> {{ first.data }}<br />
<span class="item">Local:</span> {{ first.local }} <br />
<span class="item">Horário:</span> {{ first.horario }}
<h3>Talks</h3>
<div class="talks-container">
{% for ordem in (1..10) %}
{% for post in site.talks order:ascending %}
{% if post.meetup == first.slug %}
{% if post.order == ordem %}
<div class="talk">
<figure>
<img data-email="{{ post.author_email }}" />
</figure>
<div class="right">
<h4>{{ post.title }} - {{post.author}}</h4>
{% if post.slides %}
<div class="talk-meta">
<a class="slides btn btn-default btn-xs" href="{{post.slides}}" target="_blank">Slides</a>
</div>
{% endif %}
{% if post.demo %}
<div class="talk-meta">
<a class="demo btn btn-default btn-xs" href="{{post.demo}}" target="_blank">Demo</a>
</div>
{% endif %}
{{ post.content }}
</div>
</div>
{% endif %}
{% endif %}
{% endfor %}
{% endfor %}
</div>
<h3>Fotos</h3>
<div class="photos" data-id="{{first.facebook_album}}"></div>
{% if first.videos != blank %}
<!--br clear="all" />
<h3 id="video" data-videos="{{ first.videos }}">Vídeos</h3>
<div id="videos-container"></div-->
{% endif %}
{% endif %}